13 lines
171 B
GDScript3
13 lines
171 B
GDScript3
|
extends TextureButton
|
||
|
|
||
|
|
||
|
func _ready():
|
||
|
grab_focus()
|
||
|
|
||
|
func _process(delta):
|
||
|
pass
|
||
|
|
||
|
|
||
|
func _on_pressed():
|
||
|
get_tree().change_scene_to_file("res://Game/MainGame/Game.tscn")
|