diff --git a/openpype/pipeline/publish/publish_plugins.py b/openpype/pipeline/publish/publish_plugins.py index 0bac73891c..d9145275f7 100644 --- a/openpype/pipeline/publish/publish_plugins.py +++ b/openpype/pipeline/publish/publish_plugins.py @@ -362,7 +362,7 @@ class ExtractorColormanaged(Extractor): { # for other publish plugins and loaders "colorspace": "linear", - "configData": { + "config": { # for future references in case need "path": "/abs/path/to/config.ocio", # for other plugins within remote publish cases @@ -418,7 +418,7 @@ class ExtractorColormanaged(Extractor): if colorspace: colorspace_data = { "colorspace": colorspace, - "configData": config_data + "config": config_data } # update data key diff --git a/openpype/plugins/publish/extract_colorspace_data.py b/openpype/plugins/publish/extract_colorspace_data.py index 5f76cc2314..611fb91cbb 100644 --- a/openpype/plugins/publish/extract_colorspace_data.py +++ b/openpype/plugins/publish/extract_colorspace_data.py @@ -17,7 +17,7 @@ class ExtractColorspaceData(publish.ExtractorColormanaged): Output data: representation[colorspaceData] = { "colorspace": "linear", - "configData": { + "config": { "path": "/abs/path/to/config.ocio", "template": "{project[root]}/path/to/config.ocio" } diff --git a/website/docs/dev_colorspace.md b/website/docs/dev_colorspace.md index c844c1932f..fe9a0ec1e3 100644 --- a/website/docs/dev_colorspace.md +++ b/website/docs/dev_colorspace.md @@ -23,14 +23,14 @@ It's up to the Loaders to read these values and apply the correct expected color ### Keys - **colorspace** - string value used in other publish plugins and loaders -- **configData** - storing two versions of path. +- **config** - storing two versions of path. - **path** - is formated and with baked platform root. It is used for posible need to find out where we were sourcing color config during publishing. - **template** - unformated tempate resolved from settings. It is used for other plugins targeted to remote publish which could be processed at different platform. ### Example { "colorspace": "linear", - "configData": { + "config": { "path": "/abs/path/to/config.ocio", "template": "{project[root]}/path/to/config.ocio" }