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

22
scripts/endpoint.gd Normal file
View File

@@ -0,0 +1,22 @@
class_name Endpoint extends Control
@export var percent : float = 0
var filled: bool
var fill: bool :
get:
return filled
set(value):
if value != filled:
set_fill(value)
func set_fill(value : bool) -> void:
filled = value
if value:
$Dot.visible = true
$Fill.modulate = Color.SEA_GREEN
else:
$Dot.visible = false
$Fill.modulate = Color.BLACK