13 lines
257 B
GDScript
13 lines
257 B
GDScript
extends PanelContainer
|
|
|
|
onready var animation_player = get_node("AnimationPlayer")
|
|
|
|
|
|
func _ready():
|
|
# warning-ignore:return_value_discarded
|
|
Call.connect("requested", self, "_on_call_requested")
|
|
|
|
|
|
func _on_call_requested():
|
|
animation_player.play("FadeIn")
|