25 lines
509 B
GDScript
25 lines
509 B
GDScript
@tool
|
|
extends VBoxContainer
|
|
class_name Alert
|
|
|
|
@export var text = "" :
|
|
set(t):
|
|
text = t
|
|
if is_node_ready():
|
|
%Label.text = t
|
|
|
|
func appear(
|
|
with_anim : bool = not visible
|
|
):
|
|
if with_anim :
|
|
%AppearAnimationPlayer.play("appear")
|
|
else:
|
|
%AppearAnimationPlayer.play("shown")
|
|
|
|
func disappear(
|
|
with_anim : bool = visible
|
|
):
|
|
if with_anim :
|
|
%AppearAnimationPlayer.play_backwards("appear")
|
|
else:
|
|
%AppearAnimationPlayer.play("hidden") |