small racing game im working on
Diffstat (limited to 'ui/splits/splits.gd')
| -rw-r--r-- | ui/splits/splits.gd | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/splits/splits.gd b/ui/splits/splits.gd index 0a8d9be..9d65b3a 100644 --- a/ui/splits/splits.gd +++ b/ui/splits/splits.gd @@ -12,3 +12,6 @@ func update(time: float, prev_time: float) -> void: current.text = GameTimer.format(time) timer = get_tree().create_timer(5) timer.timeout.connect(hide) + +func _ready() -> void: + hide() |