mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
hotfix/corrected orders
This commit is contained in:
parent
09458c7ee2
commit
f734aa6e28
8 changed files with 5 additions and 5 deletions
|
|
@ -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"]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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"""
|
||||||
|
|
|
||||||
|
|
@ -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']
|
||||||
|
|
|
||||||
|
|
@ -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']
|
||||||
|
|
|
||||||
|
|
@ -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']
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue