Files
gymkhana-actions/game/rooms/room12/esc/button.esc
Dennis Ploeger df78b52b8a 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>
2021-09-28 11:30:40 +02:00

32 lines
481 B
Plaintext

: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