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.

11 lines
322 B

6 months ago
extends DialogicAnimation
func animate():
var tween := (node.create_tween() as Tween)
tween.set_ease(Tween.EASE_OUT).set_trans(Tween.TRANS_BACK)
node.position.y = -node.get_viewport().size.y
tween.tween_property(node, 'position:y', end_position.y, time)
tween.finished.connect(emit_signal.bind('finished_once'))