8 lines
145 B
GDScript
8 lines
145 B
GDScript
extends Node3D
|
|
|
|
|
|
func _ready() -> void:
|
|
var anim := get_node_or_null(^"AnimationPlayer") as AnimationPlayer
|
|
if anim:
|
|
anim.play(&"Juubeldab")
|