mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
fix(global, nukestudio): fixing order of plugins
This commit is contained in:
parent
be47d589f9
commit
8d3f31c42a
2 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ class CollectProjectData(pyblish.api.ContextPlugin):
|
|||
"""Collecting project data from avalon db"""
|
||||
|
||||
label = "Collect Project Data"
|
||||
order = pyblish.api.CollectorOrder
|
||||
order = pyblish.api.CollectorOrder - 0.1
|
||||
|
||||
def process(self, context):
|
||||
# get project data from avalon db
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import pype.api as pype
|
|||
class CollectCurrentFile(pyblish.api.ContextPlugin):
|
||||
"""Inject the current working file into context"""
|
||||
|
||||
order = pyblish.api.CollectorOrder
|
||||
order = pyblish.api.CollectorOrder - 0.1
|
||||
|
||||
def process(self, context):
|
||||
"""Todo, inject the current working file"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue