7 lines
145 B
GDScript3
7 lines
145 B
GDScript3
|
extends Control
|
||
|
|
||
|
|
||
|
func _physics_process(delta):
|
||
|
if Input.is_action_pressed("ui_accept"):
|
||
|
get_tree().change_scene("res://Levels/Level01.tscn")
|