mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
renamed 'CollectAvalonEntities' to 'CollectContextEntities'
This commit is contained in:
parent
35a6badc21
commit
8d467b1a96
4 changed files with 5 additions and 5 deletions
|
|
@ -6,7 +6,7 @@ class CollectOutputFrameRange(pyblish.api.ContextPlugin):
|
||||||
|
|
||||||
When instances are collected context does not contain `frameStart` and
|
When instances are collected context does not contain `frameStart` and
|
||||||
`frameEnd` keys yet. They are collected in global plugin
|
`frameEnd` keys yet. They are collected in global plugin
|
||||||
`CollectAvalonEntities`.
|
`CollectContextEntities`.
|
||||||
"""
|
"""
|
||||||
label = "Collect output frame range"
|
label = "Collect output frame range"
|
||||||
order = pyblish.api.CollectorOrder
|
order = pyblish.api.CollectorOrder
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ class ValidateMarks(pyblish.api.ContextPlugin):
|
||||||
def get_expected_data(context):
|
def get_expected_data(context):
|
||||||
scene_mark_in = context.data["sceneMarkIn"]
|
scene_mark_in = context.data["sceneMarkIn"]
|
||||||
|
|
||||||
# Data collected in `CollectAvalonEntities`
|
# Data collected in `CollectContextEntities`
|
||||||
frame_end = context.data["frameEnd"]
|
frame_end = context.data["frameEnd"]
|
||||||
frame_start = context.data["frameStart"]
|
frame_start = context.data["frameStart"]
|
||||||
handle_start = context.data["handleStart"]
|
handle_start = context.data["handleStart"]
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ class ValidateWorkfileData(pyblish.api.ContextPlugin):
|
||||||
targets = ["tvpaint_worker"]
|
targets = ["tvpaint_worker"]
|
||||||
|
|
||||||
def process(self, context):
|
def process(self, context):
|
||||||
# Data collected in `CollectAvalonEntities`
|
# Data collected in `CollectContextEntities`
|
||||||
frame_start = context.data["frameStart"]
|
frame_start = context.data["frameStart"]
|
||||||
frame_end = context.data["frameEnd"]
|
frame_end = context.data["frameEnd"]
|
||||||
handle_start = context.data["handleStart"]
|
handle_start = context.data["handleStart"]
|
||||||
|
|
|
||||||
|
|
@ -16,11 +16,11 @@ from openpype.client import get_project, get_asset_by_name
|
||||||
from openpype.pipeline import legacy_io, KnownPublishError
|
from openpype.pipeline import legacy_io, KnownPublishError
|
||||||
|
|
||||||
|
|
||||||
class CollectAvalonEntities(pyblish.api.ContextPlugin):
|
class CollectContextEntities(pyblish.api.ContextPlugin):
|
||||||
"""Collect Anatomy into Context."""
|
"""Collect Anatomy into Context."""
|
||||||
|
|
||||||
order = pyblish.api.CollectorOrder - 0.1
|
order = pyblish.api.CollectorOrder - 0.1
|
||||||
label = "Collect Avalon Entities"
|
label = "Collect Context Entities"
|
||||||
|
|
||||||
def process(self, context):
|
def process(self, context):
|
||||||
legacy_io.install()
|
legacy_io.install()
|
||||||
Loading…
Add table
Add a link
Reference in a new issue