This commit is contained in:
Ultrablob 2024-05-06 10:05:42 -04:00
parent 100572749a
commit 11a54f2b94
22 changed files with 304 additions and 532 deletions

10
Blink.gd Normal file
View file

@ -0,0 +1,10 @@
extends "res://LockedRotation.gd"
@export var off_color = Color.TRANSPARENT
func blink():
while true:
self_modulate = off_color
await $Timer.timeout
self_modulate = Color.WHITE
await $Timer.timeout