This repository has been archived on 2023-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
trashsort/scripts/dogLoadout.gd
2020-11-01 00:59:39 +03:00

11 lines
233 B
GDScript

extends Node
func _ready():
$sound.stream = load("res://sounds/dogMusic.ogg")
$sound.play()
# warning-ignore:unused_argument
func _physics_process(delta):
if Input.is_action_just_pressed("ui_cancel"):
_G.loadScene("MainMenu")