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.
|
extends DialogicAnimation
|
|
|
|
func animate() -> void:
|
|
await node.get_tree().process_frame
|
|
finished.emit()
|
|
|
|
|
|
func _get_named_variations() -> Dictionary:
|
|
return {
|
|
"instant in": {"reversed": false, "type": AnimationType.IN},
|
|
"instant out": {"reversed": true, "type": AnimationType.OUT},
|
|
}
|