Aborting a Daz Script?
Stretch65
Posts: 166
Hi,
Is there a command in Daz script that simply aborts a script? Something named like exit(), return, abort()?
Comments
There is continue; for breaking out of loops, and you can have multiple return statements from a function, so if you need to stop just return from your curent location (with a suitable return type - you could, if there are no set values, return true if the script was meant to go on and false otherwise).