11 lines
275 B
Plaintext
Executable File
11 lines
275 B
Plaintext
Executable File
:look
|
|
say player "That button uses camera_shift to move the camera by (1000,-400) pixels."
|
|
|
|
:use
|
|
# Disable input so all steps run without interruption
|
|
accept_input NONE
|
|
camera_shift 1000 -400 2 LINEAR
|
|
wait 3
|
|
camera_set_target 1 player
|
|
# Re-enable user input
|
|
accept_input ALL |