AY-5750 - put order after collect_review

This plugin depends on review in families logic which got put there only after this plugin (because of previous move order to accommodate deadline collection data).
This plugin must run after collect_review BUT before collect DL credentials!
This commit is contained in:
Petr Kalis 2024-06-17 17:32:08 +02:00
parent 3d0a35d7ad
commit e6192095d4

View file

@ -23,8 +23,16 @@ class AERenderInstance(RenderInstance):
class CollectAERender(publish.AbstractCollectRender):
"""Prepares RenderInstance.
order = pyblish.api.CollectorOrder + 0.100
RenderInstance is meant to replace simple dictionaries to provide code
assist and typing. (Currently used only in AE, Harmony though.)
This must run after `collect_review`, but before Deadline plugins (which
should be run only on renderable instances.)
"""
order = pyblish.api.CollectorOrder + 0.125
label = "Collect After Effects Render Layers"
hosts = ["aftereffects"]