9 lines
234 B
GDScript
9 lines
234 B
GDScript
extends Node3D
|
|
|
|
|
|
func _ready() -> void:
|
|
add_to_group(&"public") # excluded from debug overlays — see publikum_controller.gd
|
|
var anim := get_node_or_null(^"AnimationPlayer") as AnimationPlayer
|
|
if anim:
|
|
anim.play(&"Juubeldab")
|