Aborting a Daz Script?

Hi,

Is there a command in Daz script that simply aborts a script?  Something named like exit(), return, abort()?

Comments

  • Richard HaseltineRichard Haseltine Posts: 100,825

    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).

Sign In or Register to comment.