Moved everything into a file system. Links broken.

This commit is contained in:
2025-08-10 03:58:03 -04:00
parent 4e0b42eb23
commit 434216ca29
182 changed files with 1141 additions and 252 deletions

12
scripts/timer_label.gd Normal file
View File

@@ -0,0 +1,12 @@
extends Label
func _on_time_changed(time : float) -> void:
var t : int = int(time)
var ms = time - t
var s = t % 60
t = (t - s) / 60
var m = t % 60
t = (t - m) / 60
var h = t
text = "%02d:%02d:%02d.%02d" % [h,m,s,int(ms * 100) % 100]