From 1cf5e522ba194033763b965baf5e5aaaf8ce18e5 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 5 May 2021 11:55:16 +0200 Subject: [PATCH] added font filepath to settings --- openpype/settings/defaults/project_settings/global.json | 7 ++++++- .../projects_schema/schemas/schema_global_publish.json | 7 +++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/openpype/settings/defaults/project_settings/global.json b/openpype/settings/defaults/project_settings/global.json index 712ec22cfc..791514c987 100644 --- a/openpype/settings/defaults/project_settings/global.json +++ b/openpype/settings/defaults/project_settings/global.json @@ -87,7 +87,12 @@ ], "x_offset": 5, "y_offset": 5, - "bg_padding": 5 + "bg_padding": 5, + "font_filepath": { + "windows": "", + "darwin": "", + "linux": "" + } }, "profiles": [ { diff --git a/openpype/settings/entities/schemas/projects_schema/schemas/schema_global_publish.json b/openpype/settings/entities/schemas/projects_schema/schemas/schema_global_publish.json index 62de311024..4abb66e8e6 100644 --- a/openpype/settings/entities/schemas/projects_schema/schemas/schema_global_publish.json +++ b/openpype/settings/entities/schemas/projects_schema/schemas/schema_global_publish.json @@ -334,6 +334,13 @@ "type": "number", "key": "bg_padding", "label": "Padding aroung text" + }, + { + "type": "path", + "key": "font_filepath", + "label": "Font file path", + "multipath": false, + "multiplatform": true } ] },