hotfix/corrected orders

This commit is contained in:
Jakub Trllo 2019-06-06 14:34:53 +02:00
parent 09458c7ee2
commit f734aa6e28
8 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@ from pyblish import api
class CollectClips(api.ContextPlugin): class CollectClips(api.ContextPlugin):
"""Collect all Track items selection.""" """Collect all Track items selection."""
order = api.CollectorOrder order = api.CollectorOrder + 0.01
label = "Collect Clips" label = "Collect Clips"
hosts = ["nukestudio"] hosts = ["nukestudio"]

View file

@ -4,7 +4,7 @@ import pype.api as pype
class CollectCurrentFile(pyblish.api.ContextPlugin): class CollectCurrentFile(pyblish.api.ContextPlugin):
"""Inject the current working file into context""" """Inject the current working file into context"""
order = pyblish.api.CollectorOrder order = pyblish.api.CollectorOrder -0.05
def process(self, context): def process(self, context):
"""Todo, inject the current working file""" """Todo, inject the current working file"""

View file

@ -4,7 +4,7 @@ from pyblish import api
class CollectClipTagTasks(api.InstancePlugin): class CollectClipTagTasks(api.InstancePlugin):
"""Collect Tags from selected track items.""" """Collect Tags from selected track items."""
order = api.CollectorOrder + 0.006 order = api.CollectorOrder + 0.012
label = "Collect Tag Tasks" label = "Collect Tag Tasks"
hosts = ["nukestudio"] hosts = ["nukestudio"]
families = ['clip'] families = ['clip']

View file

@ -4,7 +4,7 @@ from pyblish import api
class CollectClipTagTypes(api.InstancePlugin): class CollectClipTagTypes(api.InstancePlugin):
"""Collect Types from Tags of selected track items.""" """Collect Types from Tags of selected track items."""
order = api.CollectorOrder + 0.007 order = api.CollectorOrder + 0.012
label = "Collect Plate Type from Tag" label = "Collect Plate Type from Tag"
hosts = ["nukestudio"] hosts = ["nukestudio"]
families = ['clip'] families = ['clip']

View file

@ -4,7 +4,7 @@ from pyblish import api
class CollectClipTags(api.InstancePlugin): class CollectClipTags(api.InstancePlugin):
"""Collect Tags from selected track items.""" """Collect Tags from selected track items."""
order = api.CollectorOrder + 0.005 order = api.CollectorOrder + 0.011
label = "Collect Tags" label = "Collect Tags"
hosts = ["nukestudio"] hosts = ["nukestudio"]
families = ['clip'] families = ['clip']