main menu, bootsplash tweaks

This commit is contained in:
2024-03-23 14:51:21 +01:00
parent 5f87e4f54f
commit daf88c489c
5 changed files with 1429 additions and 4 deletions
+7 -2
View File
@@ -2,9 +2,14 @@ extends Node2D
func _ready():
await get_tree().create_timer(1.0).timeout # Replace with function body.
var base_font_size = 20
for i in range(100):
await get_tree().create_timer(0.02).timeout
var label = get_node("TeletypeGames")
label.get_label_settings().font_size = base_font_size + i
await get_tree().create_timer(1.5).timeout
get_tree().change_scene_to_file("res://scenes/main_menu/MainMenu.tscn")
func _process(delta):
pass