mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
Merge pull request #1361 from ynput/bugfix/some-batchdelivery-related-issues
BatchDelivery related enhancements
This commit is contained in:
commit
7bc54eb9ca
5 changed files with 10 additions and 5 deletions
|
|
@ -1403,7 +1403,12 @@ def _get_display_view_colorspace_name(config_path, display, view):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
config = _get_ocio_config(config_path)
|
config = _get_ocio_config(config_path)
|
||||||
return config.getDisplayViewColorSpaceName(display, view)
|
colorspace = config.getDisplayViewColorSpaceName(display, view)
|
||||||
|
# Special token. See https://opencolorio.readthedocs.io/en/latest/guides/authoring/authoring.html#shared-views # noqa
|
||||||
|
if colorspace == "<USE_DISPLAY_NAME>":
|
||||||
|
colorspace = display
|
||||||
|
|
||||||
|
return colorspace
|
||||||
|
|
||||||
|
|
||||||
def _get_ocio_config_colorspaces(config_path):
|
def _get_ocio_config_colorspaces(config_path):
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ class CollectAudio(pyblish.api.ContextPlugin):
|
||||||
"blender",
|
"blender",
|
||||||
"houdini",
|
"houdini",
|
||||||
"max",
|
"max",
|
||||||
"circuit",
|
"batchdelivery",
|
||||||
]
|
]
|
||||||
settings_category = "core"
|
settings_category = "core"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ class ExtractBurnin(publish.Extractor):
|
||||||
"max",
|
"max",
|
||||||
"blender",
|
"blender",
|
||||||
"unreal",
|
"unreal",
|
||||||
"circuit",
|
"batchdelivery",
|
||||||
]
|
]
|
||||||
settings_category = "core"
|
settings_category = "core"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -161,7 +161,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
||||||
"aftereffects",
|
"aftereffects",
|
||||||
"flame",
|
"flame",
|
||||||
"unreal",
|
"unreal",
|
||||||
"circuit",
|
"batchdelivery",
|
||||||
"photoshop"
|
"photoshop"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ class ExtractThumbnail(pyblish.api.InstancePlugin):
|
||||||
"photoshop",
|
"photoshop",
|
||||||
"unreal",
|
"unreal",
|
||||||
"houdini",
|
"houdini",
|
||||||
"circuit",
|
"batchdelivery",
|
||||||
]
|
]
|
||||||
settings_category = "core"
|
settings_category = "core"
|
||||||
enabled = False
|
enabled = False
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue