=====Block===== ====Summary==== This function pauses to allow all of the previous steps to complete before proceeding. Most useful in situations where you are unsure of the length of time the previous steps will take to complete, particularly when there are complex animations or voiceovers involved. ====Parameters==== This function does not include any parameters. ====Examples==== > Without 'block', this script would result in the animations conflicting with each-other as they tried to play simultaneously. By adding 'block', the execution won't continue until the first animation completes. > Unlike [[pause]], the block line won't need to be adjusted if you alter any earlier timings.