mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
8 lines
139 B
GDScript
8 lines
139 B
GDScript
extends Spatial
|
|
|
|
onready var anim = $AnimationPlayer
|
|
|
|
func _ready():
|
|
anim.get_animation("Take 001").set_loop(true)
|
|
anim.play("Take 001")
|