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.
14 lines
458 B
14 lines
458 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.set_parallel(true)
|
||
|
|
||
|
# node.position.y = node.get_viewport().size.y/2
|
||
|
tween.tween_property(node, 'scale', Vector2(0,0), time)
|
||
|
# tween.tween_property(node, 'position:y', end_position.y, time)
|
||
|
tween.tween_property(node, 'modulate:a', 0, time)
|
||
|
|
||
|
tween.finished.connect(emit_signal.bind('finished_once'))
|