This commit is contained in:
Booklordofthedings 2024-08-17 18:09:22 +02:00
parent 7d3e6ccc2a
commit 8aaba75408
5 changed files with 41 additions and 1 deletions

11
gmtk_2024/scripts/goal.gd Normal file
View file

@ -0,0 +1,11 @@
extends Node
@export var next : Node
@export var img : Sprite2D
@export var img2 : Sprite2D
func _process(delta: float) -> void:
img.rotate(2 * delta)
img2.rotate(1 * delta)