From 16372098e4280d1e17597952bc437b4e7e4d101a Mon Sep 17 00:00:00 2001 From: MarcEricMartel Date: Tue, 11 Oct 2022 14:59:07 -0400 Subject: [PATCH] correction --- HUD.tscn | 1 + Start.gd | 1 + 2 files changed, 2 insertions(+) diff --git a/HUD.tscn b/HUD.tscn index 9a1a0dc..d661bc7 100644 --- a/HUD.tscn +++ b/HUD.tscn @@ -98,6 +98,7 @@ text = "Slap" [node name="Start" type="Control" parent="."] pause_mode = 2 +visible = false margin_right = 40.0 margin_bottom = 40.0 theme = SubResource( 8 ) diff --git a/Start.gd b/Start.gd index 6aea53a..2111515 100644 --- a/Start.gd +++ b/Start.gd @@ -6,6 +6,7 @@ onready var QuitGame = $"Quit Game" onready var QuitDesktop = $"Quit to Desktop" func _ready(): + self.show() get_tree().paused = true QuitGame.hide() QuitDesktop.margin_top -= 44