10 lines
210 B
GDScript
10 lines
210 B
GDScript
|
|
extends Node
|
||
|
|
|
||
|
|
|
||
|
|
# Called when the node enters the scene tree for the first time.
|
||
|
|
func _ready():
|
||
|
|
pass # Replace with function body.
|
||
|
|
|
||
|
|
func _on_Return_pressed():
|
||
|
|
get_tree().change_scene("res://scenes/main.tscn")
|