This commands provides a facility for executing a function that halts program flow without actually stopping the real-time graphics rendering
| <viz>.director( | |
| function | # function pointer |
| args |
)
function
Specifies the function to be executed.
args
Optional arguments to pass on to the director function
This command executes the specified function in a separate thread, thereby allowing you to use control flow state would otherwise be incompatible with real-time, event driven program as is Vizard's standard. Examples are while loop, user prompting, and time delays.
None