12 lines
210 B
GDScript
12 lines
210 B
GDScript
extends Node
|
|
|
|
|
|
func _ready():
|
|
$anim.play("idle")
|
|
|
|
# warning-ignore:unused_argument
|
|
func _physics_process(delta):
|
|
if Input.is_action_just_pressed("ui_cancel"):
|
|
_G.unloadLevel("Authors")
|
|
_G.showMenuButts()
|