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.

10 lines
315 B

6 months ago
extends DialogicAnimation
func animate():
var tween := (node.create_tween() as Tween)
tween.set_ease(Tween.EASE_IN).set_trans(Tween.TRANS_EXPO)
tween.tween_property(node, 'position:x', node.get_viewport().size.x+node.get_viewport().size.x/5, time)
tween.finished.connect(emit_signal.bind('finished_once'))