mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
Merge branch 'bugfix/PYPE-656-nk-slate-render-order-swap' into master-dazzle-prod
This commit is contained in:
commit
c0f5a73fb2
3 changed files with 5 additions and 2 deletions
|
|
@ -197,6 +197,10 @@ class CollectRenderedFrames(pyblish.api.ContextPlugin):
|
|||
|
||||
fps = data.get("fps", 25)
|
||||
|
||||
# adding publish comment and intent to context
|
||||
context.data["comment"] = data.get("comment", "")
|
||||
context.data["intent"] = data.get("intent", "")
|
||||
|
||||
if data.get("user"):
|
||||
context.data["user"] = data["user"]
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ import pyblish.api
|
|||
from avalon.nuke import lib as anlib
|
||||
from pype.nuke import lib as pnlib
|
||||
import pype
|
||||
reload(pnlib)
|
||||
|
||||
|
||||
class ExtractReviewDataMov(pype.api.Extractor):
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ class ExtractSlateFrame(pype.api.Extractor):
|
|||
|
||||
"""
|
||||
|
||||
order = pyblish.api.ExtractorOrder + 0.01
|
||||
order = pyblish.api.ExtractorOrder - 0.001
|
||||
label = "Extract Slate Frame"
|
||||
|
||||
families = ["slate"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue