feat: board screen, thinking status

This commit is contained in:
2025-12-06 01:43:18 -05:00
Unverified
parent 7f74030c14
commit ee1f44c76c
5 changed files with 46 additions and 6 deletions

10
scripts/thinking.gd Normal file
View File

@@ -0,0 +1,10 @@
extends Label
@export var hue = 0.0
func _process(delta):
modulate = Color.from_hsv(hue, 1.0, 1.0, 1.0)
if hue < 1.0:
hue += 0.1 * delta
else:
hue = 0.0