Merge branch 'feature/enhancement-editorial-standalop2' into develop

This commit is contained in:
Milan Kolar 2020-08-10 17:13:46 +02:00
commit 83a75c3938
18 changed files with 790 additions and 365 deletions

View file

@ -19,7 +19,14 @@ class ExtractBurnin(pype.api.Extractor):
label = "Extract burnins"
order = pyblish.api.ExtractorOrder + 0.03
families = ["review", "burnin"]
hosts = ["nuke", "maya", "shell", "nukestudio", "premiere"]
hosts = [
"nuke",
"maya",
"shell",
"nukestudio",
"premiere",
"standalonepublisher"
]
optional = True
positions = [

View file

@ -7,7 +7,7 @@ class ExtractHierarchyToAvalon(pyblish.api.ContextPlugin):
order = pyblish.api.ExtractorOrder - 0.01
label = "Extract Hierarchy To Avalon"
families = ["clip", "shot", "editorial"]
families = ["clip", "shot"]
def process(self, context):
if "hierarchyContext" not in context.data:

View file

@ -22,7 +22,15 @@ class ExtractReview(pyblish.api.InstancePlugin):
label = "Extract Review"
order = pyblish.api.ExtractorOrder + 0.02
families = ["review"]
hosts = ["nuke", "maya", "shell", "nukestudio", "premiere", "harmony"]
hosts = [
"nuke",
"maya",
"shell",
"nukestudio",
"premiere",
"harmony",
"standalonepublisher"
]
# Supported extensions
image_exts = ["exr", "jpg", "jpeg", "png", "dpx"]