This repository has been archived on 2024-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
GMTK-2023/Menus/MainMenu/StartGame.gd

12 lines
171 B
GDScript

extends TextureButton
func _ready():
grab_focus()
func _process(delta):
pass
func _on_pressed():
get_tree().change_scene_to_file("res://Game/MainGame/Game.tscn")