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.
8 lines
287 B
8 lines
287 B
6 months ago
|
extends "res://addons/dialogic/Modules/Background/Transitions/simple_push_transitions.gd"
|
||
|
|
||
|
func _fade() -> void:
|
||
|
var shader := setup_push_shader()
|
||
|
shader.set_shader_parameter('final_offset', Vector2.UP)
|
||
|
tween_shader_progress().set_trans(Tween.TRANS_SINE).set_ease(Tween.EASE_IN_OUT)
|
||
|
|