10 lines
172 B
GDScript
10 lines
172 B
GDScript
extends AnimationPlayer
|
|
|
|
func _ready() -> void:
|
|
play("fadeIn")
|
|
|
|
func _on_exit_zone_player_exit() -> void:
|
|
play("fadeOut")
|
|
play("text")
|
|
await get_tree().create_timer(4)
|