nuke: add reformat settings for baking mov presets publish plugin

This commit is contained in:
Jakub Jezek 2022-02-25 12:30:14 +01:00
parent eb5eecd45c
commit 02d3a5fa57
No known key found for this signature in database
GPG key ID: D8548FBF690B100A
2 changed files with 59 additions and 1 deletions

View file

@ -122,7 +122,30 @@
"viewer_process_override": "",
"bake_viewer_process": true,
"bake_viewer_input_process": true,
"add_tags": []
"add_tags": [],
"reformat_node_add": false,
"reformat_node_config": [
{
"name": "type",
"value": "to format"
},
{
"name": "format",
"value": "HD_1080"
},
{
"name": "filter",
"value": "Lanczos6"
},
{
"name": "black_outside",
"value": "true"
},
{
"name": "pbb",
"value": "false"
}
]
}
}
},

View file

@ -226,6 +226,41 @@
"label": "Add additional tags to representations",
"type": "list",
"object_type": "text"
},
{
"type": "separator"
},
{
"type": "boolean",
"key": "reformat_node_add",
"label": "Add Reformat Node"
},
{
"type": "collapsible-wrap",
"label": "Reformat Node Knobs",
"collapsible": true,
"collapsed": false,
"children": [
{
"type": "list",
"key": "reformat_node_config",
"object_type": {
"type": "dict",
"children": [
{
"type": "text",
"key": "name",
"label": "Knob Name"
},
{
"type": "text",
"key": "value",
"label": "Knob Value"
}
]
}
}
]
}
]
}