Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Offloaded delivery processing workflow changes #930

Draft
wants to merge 4 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions client/ayon_core/plugins/publish/collect_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class CollectAudio(pyblish.api.ContextPlugin):
"blender",
"houdini",
"max",
"circuit",
]

audio_product_name = "audioMain"
Expand Down
3 changes: 1 addition & 2 deletions client/ayon_core/plugins/publish/collect_otio_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ class CollectOtioReview(pyblish.api.InstancePlugin):

label = "Collect OTIO Review"
order = pyblish.api.CollectorOrder - 0.078
families = ["clip"]
hosts = ["resolve", "hiero", "flame"]
families = ["editorial.otio.review"]

def process(self, instance):
# Not all hosts can import this module.
Expand Down
3 changes: 2 additions & 1 deletion client/ayon_core/plugins/publish/extract_burnin.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ class ExtractBurnin(publish.Extractor):
"houdini",
"max",
"blender",
"unreal"
"unreal",
"circuit",
]

optional = True
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ExtractHierarchyToAYON(pyblish.api.ContextPlugin):

order = pyblish.api.ExtractorOrder - 0.01
label = "Extract Hierarchy To AYON"
families = ["clip", "shot"]
families = ["clip", "shot", "deliveryProcess"]

def process(self, context):
if not context.data.get("hierarchyContext"):
Expand Down
3 changes: 2 additions & 1 deletion client/ayon_core/plugins/publish/extract_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ class ExtractReview(pyblish.api.InstancePlugin):
"webpublisher",
"aftereffects",
"flame",
"unreal"
"unreal",
"circuit",
]

# Supported extensions
Expand Down
3 changes: 2 additions & 1 deletion client/ayon_core/plugins/publish/extract_thumbnail.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class ExtractThumbnail(pyblish.api.InstancePlugin):
"traypublisher",
"substancepainter",
"nuke",
"aftereffects"
"aftereffects",
"circuit",
]
enabled = False

Expand Down