8 lines
124 B
GDScript3
8 lines
124 B
GDScript3
![]() |
extends AnimationPlayer
|
||
|
|
||
|
func _ready() -> void:
|
||
|
play("fadeIn")
|
||
|
|
||
|
func _on_exit_zone_player_exit() -> void:
|
||
|
play("fadeOut")
|