2020-08-16 08:50:04 +02:00
|
|
|
extends AnimatedSprite
|
|
|
|
|
|
|
|
|
|
|
|
func _ready():
|
2020-08-17 09:35:43 +02:00
|
|
|
yield(get_tree().create_timer(0.1), 'timeout')
|
2020-08-16 08:50:04 +02:00
|
|
|
play('start')
|
|
|
|
frame = 0
|
|
|
|
|
|
|
|
func _on_background_animation_finished():
|
|
|
|
play('idle')
|
|
|
|
frame = 0
|