feat(global): adding standalonepublisher to hosts

This commit is contained in:
Jakub Jezek 2020-08-04 16:52:12 +02:00
parent 04c4ba7762
commit c44873d2c1
No known key found for this signature in database
GPG key ID: C4B96E101D2A47F3
2 changed files with 17 additions and 2 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

@ -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"]