feat: This enables user-defined transition and uses a tween to animate the transitions (#405)

* feat: This enables user-defined transition and uses a tween to animate the transitions

fixes #344

* docs: Automatic update of API docs

* docs: Automatic update of API docs

Co-authored-by: Dennis Ploeger <develop@dieploegers.de>
Co-authored-by: dploeger <dploeger@users.noreply.github.com>
This commit is contained in:
Dennis Ploeger
2021-09-28 11:30:40 +02:00
committed by GitHub
parent b710def99d
commit df78b52b8a
28 changed files with 323 additions and 301 deletions

View File

@@ -0,0 +1,31 @@
:use
say player "Default"
transition "" out
wait 1
transition "" in
say player "Fade white"
transition fade_white out
wait 1
transition fade_white in
say player "Fade black"
transition fade_black out
wait 1
transition fade_black in
say player "From Center"
transition from_center out
wait 1
transition from_center in
say player "Shards"
transition shards out
wait 1
transition shards in
say player "Blackout"
transition fade_black out 0.0
wait 1
transition fade_black in 0.0