ape-ame/Blink.gd
2024-05-06 10:05:42 -04:00

10 lines
210 B
GDScript

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