From ca36bb2fb7bd4e554ab8014bf20ba6c64573d09f Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Tue, 22 Jun 2021 13:05:19 +0200 Subject: [PATCH] Added settings for ExtractSequence to be able modify color of thumbnail background --- .../defaults/project_settings/tvpaint.json | 8 ++++++++ .../projects_schema/schema_project_tvpaint.json | 15 +++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/openpype/settings/defaults/project_settings/tvpaint.json b/openpype/settings/defaults/project_settings/tvpaint.json index b4f3b315ec..25b7056ce1 100644 --- a/openpype/settings/defaults/project_settings/tvpaint.json +++ b/openpype/settings/defaults/project_settings/tvpaint.json @@ -1,5 +1,13 @@ { "publish": { + "ExtractSequence": { + "thumbnail_bg": [ + 255, + 255, + 255, + 255 + ] + }, "ValidateProjectSettings": { "enabled": true, "optional": true, diff --git a/openpype/settings/entities/schemas/projects_schema/schema_project_tvpaint.json b/openpype/settings/entities/schemas/projects_schema/schema_project_tvpaint.json index 6f90bb4263..1894384bb9 100644 --- a/openpype/settings/entities/schemas/projects_schema/schema_project_tvpaint.json +++ b/openpype/settings/entities/schemas/projects_schema/schema_project_tvpaint.json @@ -11,6 +11,21 @@ "key": "publish", "label": "Publish plugins", "children": [ + { + "type": "dict", + "collapsible": true, + "key": "ExtractSequence", + "label": "ExtractSequence", + "is_group": true, + "children": [ + { + "type": "color", + "key": "thumbnail_bg", + "label": "Thumbnail BG color", + "use_alpha": false + } + ] + }, { "type": "schema_template", "name": "template_publish_plugin",