mirror of
https://git.erg.school/P039/art_num_2024.git
synced 2026-02-04 13:09:20 +01:00
12 lines
227 B
GDScript
12 lines
227 B
GDScript
extends AnimationPlayer
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
play("start")
|
|
|
|
|
|
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
|
func _process(delta):
|
|
pass
|