This repository has been archived on 2025-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
ld49/game/Icon.gd
Ryan 36d097ff73 Close issue # 64
Icon scenes created
Icons will spin on spawn
Icons will show customer state
Icons will show barista mental state
2021-10-17 19:58:32 -04:00

7 lines
198 B
GDScript

extends Node
func _ready() -> void:
var tween_controller = $Tween
tween_controller.repeat = true
tween_controller.interpolate_property(self, "rotation:y", 0, TAU, 2.0)
tween_controller.start()