From 6374f2f5408a5edb628d23d60a210b15f2b2c6ba Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Tue, 25 May 2021 14:44:42 +0200 Subject: [PATCH] settings: workfile build schema with prelaunch hooks --- .../schemas/schema_workfile_build.json | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/openpype/settings/entities/schemas/projects_schema/schemas/schema_workfile_build.json b/openpype/settings/entities/schemas/projects_schema/schemas/schema_workfile_build.json index 0cb36c2f92..8fa467f994 100644 --- a/openpype/settings/entities/schemas/projects_schema/schemas/schema_workfile_build.json +++ b/openpype/settings/entities/schemas/projects_schema/schemas/schema_workfile_build.json @@ -4,6 +4,37 @@ "key": "workfile_build", "label": "Workfile Build Settings", "children": [ + { + "type": "dict", + "collapsible": false, + "key": "pre_hooks", + "label": "Pre Launch Hooks", + "is_group": true, + "children": [ + { + "type": "dict", + "collapsible": true, + "key": "create_first_version", + "label": "Create First Version", + "checkbox_key": "enabled", + "children": [ + { + "type": "boolean", + "key": "enabled", + "label": "Enabled" + }, + { + "type": "path", + "key": "template_path", + "label": "Path to template", + "multiplatform": true, + "multipath": true + } + ] + } + + ] + }, { "type": "list", "key": "profiles",