mirror of
https://github.com/creyD/ludum_dare_46.git
synced 2026-06-13 05:52:24 +02:00
Added basic title screen functionality
This commit is contained in:
11
src/Menus/TitleScreen/TitleScreen.gd
Normal file
11
src/Menus/TitleScreen/TitleScreen.gd
Normal file
@@ -0,0 +1,11 @@
|
||||
extends Control
|
||||
class_name TitleScreen
|
||||
|
||||
onready var new_game_button = $"VBoxContainer/NewGameButton"
|
||||
|
||||
func _ready():
|
||||
new_game_button.grab_focus()
|
||||
|
||||
|
||||
func _on_Startup_startup_finished():
|
||||
pass # Replace with function body.
|
||||
Reference in New Issue
Block a user