Bugfixes + Menu.

This commit is contained in:
Patrick 2024-12-12 15:23:16 +01:00
parent 1ee6f6cc6d
commit 26ee79c57d
6 changed files with 94 additions and 21 deletions

View file

@ -11,13 +11,12 @@ var skip: bool = false
func _ready() -> void:
if Networking.isManager:
if timer.timeout.connect(_timer_done) != OK:
Log.error("FAILED to connect the timeout signal to _timer_done!", "Internal Error: Failed to connect signal.")
if timer.timeout.connect(_timer_done):
pass
first_frame.call_deferred()
func _timer_done() -> void:
if angry_meter > 0:
Log.debug("angrier %d" % angry_meter)
angry_meter -= 1
else:
timer.stop()