Aborting a Daz Script?
Hi,
Is there a command in Daz script that simply aborts a script? Something named like exit(), return, abort()?
You currently have no notifications.
Hi,
Is there a command in Daz script that simply aborts a script? Something named like exit(), return, abort()?
Licensing Agreement | Terms of Service | Privacy Policy | EULA
© 2025 Daz Productions Inc. All Rights Reserved.
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).