12 lines
196 B
GDScript
12 lines
196 B
GDScript
extends Node3D
|
|
|
|
@onready var anim_player : AnimationPlayer = $AnimationPlayer
|
|
|
|
func _ready() -> void:
|
|
anim_player.play("default")
|
|
|
|
|
|
func _on_timer_timeout() -> void:
|
|
print("Done")
|
|
queue_free()
|