12 lines
217 B
GDScript3
12 lines
217 B
GDScript3
|
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")
|