initial commit
This commit is contained in:
commit
fe3761d448
122 changed files with 3439 additions and 0 deletions
12
Menus/MainMenu/StartGame.gd
Normal file
12
Menus/MainMenu/StartGame.gd
Normal file
|
@ -0,0 +1,12 @@
|
|||
extends TextureButton
|
||||
|
||||
|
||||
func _ready():
|
||||
grab_focus()
|
||||
|
||||
func _process(delta):
|
||||
pass
|
||||
|
||||
|
||||
func _on_pressed():
|
||||
get_tree().change_scene_to_file("res://Game/MainGame/Game.tscn")
|
Reference in a new issue