nuke: settings for write attributes

This commit is contained in:
Jakub Jezek 2022-10-05 17:13:26 +02:00
parent 86e740c43b
commit bcac2bd143
No known key found for this signature in database
GPG key ID: 730D7C02726179A7
3 changed files with 49 additions and 54 deletions

View file

@ -56,12 +56,15 @@
],
"create": {
"CreateWriteRender": {
"fpath_template": "{work}/renders/nuke/{subset}/{subset}.{frame}.{ext}",
"defaults": [
"temp_rendering_path_template": "{work}/renders/nuke/{subset}/{subset}.{frame}.{ext}",
"default_variants": [
"Main",
"Mask"
],
"knobs": [],
"instance_attributes": [
"reviewable",
"farm_rendering"
],
"prenodes": {
"Reformat01": {
"nodeclass": "Reformat",
@ -82,27 +85,28 @@
}
},
"CreateWritePrerender": {
"fpath_template": "{work}/renders/nuke/{subset}/{subset}.{frame}.{ext}",
"use_range_limit": true,
"defaults": [
"temp_rendering_path_template": "{work}/renders/nuke/{subset}/{subset}.{frame}.{ext}",
"default_variants": [
"Key01",
"Bg01",
"Fg01",
"Branch01",
"Part01"
],
"reviewable": false,
"knobs": [],
"instance_attributes": [
"farm_rendering",
"use_range_limit"
],
"prenodes": {}
},
"CreateWriteStill": {
"fpath_template": "{work}/renders/nuke/{subset}/{subset}.{ext}",
"defaults": [
"temp_rendering_path_template": "{work}/renders/nuke/{subset}/{subset}.{ext}",
"default_variants": [
"ImageFrame",
"MPFrame",
"LayoutFrame"
],
"knobs": [],
"instance_attributes": [],
"prenodes": {
"FrameHold01": {
"nodeclass": "FrameHold",

View file

@ -97,26 +97,20 @@
"children": [
{
"type": "text",
"key": "fpath_template",
"label": "Path template"
"key": "temp_rendering_path_template",
"label": "Temporary rendering path template"
},
{
"type": "list",
"key": "defaults",
"label": "Subset name defaults",
"key": "default_variants",
"label": "Default variants",
"object_type": {
"type": "text"
}
},
{
"type": "schema_template",
"name": "template_nuke_knob_inputs",
"template_data": [
{
"label": "Node knobs",
"key": "knobs"
}
]
"name": "template_nuke_write_attrs"
},
{
"key": "prenodes",
@ -160,36 +154,20 @@
"children": [
{
"type": "text",
"key": "fpath_template",
"label": "Path template"
},
{
"type": "boolean",
"key": "use_range_limit",
"label": "Use Frame range limit by default"
"key": "temp_rendering_path_template",
"label": "Temporary rendering path template"
},
{
"type": "list",
"key": "defaults",
"label": "Subset name defaults",
"key": "default_variants",
"label": "Default variants",
"object_type": {
"type": "text"
}
},
{
"type": "boolean",
"key": "reviewable",
"label": "Add reviewable toggle"
},
{
"type": "schema_template",
"name": "template_nuke_knob_inputs",
"template_data": [
{
"label": "Node knobs",
"key": "knobs"
}
]
"name": "template_nuke_write_attrs"
},
{
"key": "prenodes",
@ -233,26 +211,20 @@
"children": [
{
"type": "text",
"key": "fpath_template",
"label": "Path template"
"key": "temp_rendering_path_template",
"label": "Temporary rendering path template"
},
{
"type": "list",
"key": "defaults",
"label": "Subset name defaults",
"key": "default_variants",
"label": "Default variants",
"object_type": {
"type": "text"
}
},
{
"type": "schema_template",
"name": "template_nuke_knob_inputs",
"template_data": [
{
"label": "Node knobs",
"key": "knobs"
}
]
"name": "template_nuke_write_attrs"
},
{
"key": "prenodes",

View file

@ -0,0 +1,19 @@
[
{
"key": "instance_attributes",
"label": "Instance attributes",
"type": "enum",
"multiselection": true,
"enum_items": [
{
"reviewable": "Reviewable"
},
{
"farm_rendering": "Farm rendering"
},
{
"use_range_limit": "Use range limit"
}
]
}
]