Move Fusion OCIO settings out of anatomy into project settings

This commit is contained in:
Roy Nieterau 2022-09-16 15:41:16 +02:00
parent 839ded23ba
commit 508b17963d
5 changed files with 54 additions and 39 deletions

View file

@ -236,16 +236,6 @@
"viewTransform": "sRGB gamma"
}
},
"fusion": {
"ocio": {
"enabled": false,
"configFilePath": {
"windows": [],
"darwin": [],
"linux": []
}
}
},
"flame": {
"project": {
"colourPolicy": "ACES 1.1",

View file

@ -0,0 +1,12 @@
{
"imageio": {
"ocio": {
"enabled": false,
"configFilePath": {
"windows": [],
"darwin": [],
"linux": []
}
}
}
}

View file

@ -90,6 +90,10 @@
"type": "schema",
"name": "schema_project_nuke"
},
{
"type": "schema",
"name": "schema_project_fusion"
},
{
"type": "schema",
"name": "schema_project_hiero"

View file

@ -0,0 +1,38 @@
{
"type": "dict",
"collapsible": true,
"key": "fusion",
"label": "Fusion",
"is_file": true,
"children": [
{
"key": "imageio",
"type": "dict",
"label": "Color Management (ImageIO)",
"collapsible": true,
"children": [
{
"key": "ocio",
"type": "dict",
"label": "OpenColorIO (OCIO)",
"collapsible": true,
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Set OCIO variable for Fusion"
},
{
"type": "path",
"key": "configFilePath",
"label": "OCIO Config File Path",
"multiplatform": true,
"multipath": true
}
]
}
]
}
]
}

View file

@ -427,35 +427,6 @@
}
]
},
{
"key": "fusion",
"type": "dict",
"label": "Fusion",
"children": [
{
"key": "ocio",
"type": "dict",
"label": "OCIO",
"collapsible": true,
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Set OCIO variable for Fusion"
},
{
"type": "path",
"key": "configFilePath",
"label": "OCIO Config File Path",
"multiplatform": true,
"multipath": true
}
]
}
]
},
{
"key": "flame",
"type": "dict",