Fixed debugger errors in many files and optimized some scenes/code

This commit is contained in:
VoidTwo
2021-12-12 23:55:59 -06:00
parent fc6dfdef4d
commit ef5ce684eb
39 changed files with 657 additions and 740 deletions

View File

@@ -1,6 +1,6 @@
extends Label
signal timer_end
signal timer_out
func _process(_delta: float) -> void:
@@ -8,5 +8,5 @@ func _process(_delta: float) -> void:
set_text('%02d:%02d' % [time_seconds, int(($Timer.get_time_left() - time_seconds) * 100)])
if $Timer.get_time_left() == 0:
get_tree().change_scene('res://Levels/Hub World.tscn')
emit_signal('timer_out')
return