Vast improvements and a working finite state machine, working on new guild member registration.

This commit is contained in:
2025-07-24 08:41:19 -04:00
parent 90151369de
commit dc30d1b15c
100 changed files with 1987 additions and 194 deletions

22
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