12 lines
217 B
GDScript
12 lines
217 B
GDScript
extends PanelContainer
|
|
|
|
onready var animation_player = get_node("AnimationPlayer")
|
|
|
|
|
|
func _ready():
|
|
Call.connect("requested", self, "_on_call_requested")
|
|
|
|
|
|
func _on_call_requested():
|
|
animation_player.play("FadeIn")
|