Narration
Pause
Learn how to use the `pause` command in ink scripts with Pixi’VN to control step execution and dialogue flow.
After executing a #
script, the system performs a go next to move to the next step. For example, in this case you will see the image and the dialogue text.
=== start ===
# show image alien eggHead
Hello, world!
-> DONE
You can use pause
to stop the execution of the steps
and set the dialogue text to empty.
The syntax is:
# pause
=== start ===
# show image alien eggHead
# pause
Hello, world!
-> DONE