Eyeon:Script/Reference/Libraries/eyeon/wait
From VFXPedia
< Eyeon:Script | Reference | Libraries | eyeon
Contents |
Usage
wait(number seconds )
- seconds (required, number)
The number of seconds to pause eyeonScript
Returns
This function does not return a value.
Remarks
The wait function causes eyeonScript to "go to sleep" for a specified number of seconds. While waiting, eyeonScript consumes no CPU time, so if the script must pause for a moment, this is the correct method for pausing.
Requirements
- eyeonScript 5.1
This is available as a global function in Fusion 5.0
Examples
print("Script Pausing for 10 seconds") wait(10) print("Done pausing - ready to go!")