Validating II
In the previous example, we ensured that instances are title-cased. But failure doesn't stop subsequent plug-ins from actually writing to disk.
To remedy this, we'll turn our attention to some of the pre-defined orders provided by Pyblish.
Collection
Validation
Extraction
Integration
Collection sets the stage for validation. Once validation is complete, Pyblish takes a moment to consider whether any of the plug-ins that ran threw an error. If it did, it stops processing and returns control to the user.
This behavior is paramount to publishing. If you think back to Quickstart earlies in this guide, you may remember the following visualisation of it.
In the next example, we will dig deeper into this mechanism and find out more about what it can do for us.
Last updated