add workfile colorspace to Houdini settings

This commit is contained in:
MustafaJafar 2023-11-02 11:20:42 +02:00
parent ef7a3fceb7
commit c2f2fdb38b
2 changed files with 40 additions and 0 deletions

View file

@ -21,6 +21,12 @@
"file_rules": {
"activate_host_rules": false,
"rules": {}
},
"workfile":{
"enabled": false,
"default_display": "ACES",
"default_view": "sRGB",
"review_color_space": "Output - sRGB"
}
},
"shelves": [],

View file

@ -19,6 +19,40 @@
{
"type": "template",
"name": "template_host_color_management_ocio"
},
{
"key": "workfile",
"type": "dict",
"label": "Workfile",
"collapsible": true,
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Enabled"
},
{
"type": "label",
"label": "Render space in Houdini is always set to 'scene_linear' Role."
},
{
"type": "text",
"key": "default_display",
"label": "Display"
},
{
"type": "text",
"key": "default_view",
"label": "View"
},
{
"type": "text",
"key": "review_color_space",
"label": "Review colorspace"
}
]
}
]
},