From b8d6ba924c60c13bca838655b1fa876758c47ed7 Mon Sep 17 00:00:00 2001 From: IcECreAm777 <31211782+IcECreAm777@users.noreply.github.com> Date: Sun, 17 Jul 2022 05:35:23 +0200 Subject: fixed a bunch of stuff --- godot/scenes/Game.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'godot/scenes/Game.gd') diff --git a/godot/scenes/Game.gd b/godot/scenes/Game.gd index f53c39a..58c9e27 100644 --- a/godot/scenes/Game.gd +++ b/godot/scenes/Game.gd @@ -24,10 +24,10 @@ func _ready(): # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta): if Input.is_action_just_pressed("ui_cancel"): + close_scoreboard() get_tree().paused = true $PausePopup.show() Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) - close_scoreboard() -- cgit