15 lines
286 B
Plaintext
Executable File
15 lines
286 B
Plaintext
Executable File
:look
|
|
say player "That button triggers a camera zoom effect."
|
|
|
|
:use
|
|
# Disable input so all steps run without interruption
|
|
accept_input NONE
|
|
camera_set_zoom 1.3 1
|
|
wait 2
|
|
camera_set_zoom 0.5 1
|
|
wait 2
|
|
camera_set_zoom 1 1
|
|
camera_set_target 0 player
|
|
# Re-enable user input
|
|
accept_input ALL
|