adding settings for creators

This commit is contained in:
Jakub Jezek 2023-05-05 17:22:14 +02:00
parent 0636df72df
commit e08ff46bfa
No known key found for this signature in database
GPG key ID: 730D7C02726179A7
2 changed files with 57 additions and 0 deletions

View file

@ -21,5 +21,18 @@
"copy_path": "~/.openpype/hosts/fusion/profiles",
"copy_status": false,
"force_sync": false
},
"create": {
"CreateSaver": {
"temp_rendering_path_template": "{workdir}/renders/fusion/{subset}/{subset}..{ext}",
"default_variants": [
"Main",
"Mask"
],
"instance_attributes": [
"reviewable",
"farm_rendering"
]
}
}
}

View file

@ -68,6 +68,50 @@
"label": "Resync profile on each launch"
}
]
},
{
"type": "dict",
"collapsible": true,
"key": "create",
"label": "Creator plugins",
"children": [
{
"type": "dict",
"collapsible": true,
"key": "CreateSaver",
"label": "Create Saver",
"is_group": true,
"children": [
{
"type": "text",
"key": "temp_rendering_path_template",
"label": "Temporary rendering path template"
},
{
"type": "list",
"key": "default_variants",
"label": "Default variants",
"object_type": {
"type": "text"
}
},
{
"key": "instance_attributes",
"label": "Instance attributes",
"type": "enum",
"multiselection": true,
"enum_items": [
{
"reviewable": "Reviewable"
},
{
"farm_rendering": "Farm rendering"
}
]
}
]
}
]
}
]
}