Adding ExtractAlembic to settings and setting the defaults to what they were,

so nothing changes here except the option to remove certain items from
families.
This commit is contained in:
DMO 2022-06-15 18:39:31 +09:00
parent 5af098d18a
commit 1d22b862d1
2 changed files with 40 additions and 8 deletions

View file

@ -65,6 +65,14 @@
"defaults": [],
"joint_hints": "jnt_org"
},
"CreateMultiverseLook": {
"enabled": true,
"publish_mip_map": true
},
"CreateMultiverseUsd": {
"enabled": true,
"strip_namespaces": true
},
"CreateAnimation": {
"enabled": true,
"defaults": [
@ -159,14 +167,6 @@
"defaults": [
"Main"
]
},
"CreateMultiverseLook": {
"enabled": true,
"publish_mip_map": true
},
"CreateMultiverseUsd": {
"enabled": true,
"strip_namespaces": true
}
},
"publish": {
@ -383,6 +383,14 @@
"optional": true,
"active": true
},
"ExtractAlembic": {
"enabled": true,
"families": [
"pointcache",
"model",
"vrayproxy"
]
},
"ValidateRigContents": {
"enabled": false,
"optional": true,

View file

@ -490,6 +490,30 @@
"label": "ValidateUniqueNames"
}
]
},
{
"type": "label",
"label": "Extractors"
},
{
"type": "dict",
"collapsible": true,
"key": "ExtractAlembic",
"label": "Extract Alembic",
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Enabled"
},
{
"key": "families",
"label": "Families",
"type": "list",
"object_type": "text"
}
]
}
]
},