diff options
author | bd <bdunahu@operationnull.com> | 2025-05-24 22:05:00 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-24 22:05:00 -0400 |
commit | d229286f70b619497bc946a36e5440df3d04f674 (patch) | |
tree | 21f41eca440ce960b81a322049929ee287173171 /scenes/title.gd | |
parent | eca6f608a81cc9aa7d2cd3824cbfebdbfe5f7096 (diff) |
Add a title screen and music
Diffstat (limited to 'scenes/title.gd')
-rw-r--r-- | scenes/title.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scenes/title.gd b/scenes/title.gd new file mode 100644 index 0000000..8242145 --- /dev/null +++ b/scenes/title.gd @@ -0,0 +1,5 @@ +extends Control + +func _input(event): + if event.is_action_pressed("ui_accept"): + get_tree().change_scene_to_file("res://scenes/game.tscn") |