You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
431 B
15 lines
431 B
extends DialogicAnimation
|
|
|
|
func animate():
|
|
var tween := (node.create_tween() as Tween)
|
|
node.position.y = orig_pos.y + node.get_viewport().size.y/5
|
|
node.modulate.a = 0
|
|
tween.set_ease(Tween.EASE_OUT)
|
|
tween.set_trans(Tween.TRANS_SINE)
|
|
tween.set_parallel()
|
|
|
|
tween.tween_property(node, 'position', orig_pos, time)
|
|
tween.tween_property(node, 'modulate:a', 1.0, time)
|
|
|
|
tween.finished.connect(emit_signal.bind('finished_once'))
|