diary/user_interface/call_panel/call_panel.gd

13 lines
257 B
GDScript3
Raw Normal View History

2022-05-24 21:31:30 +02:00
extends PanelContainer
onready var animation_player = get_node("AnimationPlayer")
func _ready():
2022-06-04 13:33:00 +02:00
# warning-ignore:return_value_discarded
2022-05-24 21:31:30 +02:00
Call.connect("requested", self, "_on_call_requested")
func _on_call_requested():
animation_player.play("FadeIn")