mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
include fbx validator in settings
This commit is contained in:
parent
1d0c78f044
commit
4ea1f2b586
4 changed files with 19 additions and 2 deletions
|
|
@ -97,6 +97,11 @@
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"active": true
|
"active": true
|
||||||
|
},
|
||||||
|
"ValidateFBXPrimitiveHierarchyPaths": {
|
||||||
|
"enabled": true,
|
||||||
|
"optional": true,
|
||||||
|
"active": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -43,8 +43,12 @@
|
||||||
{
|
{
|
||||||
"key": "ValidateContainers",
|
"key": "ValidateContainers",
|
||||||
"label": "ValidateContainers"
|
"label": "ValidateContainers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ValidateFBXPrimitiveHierarchyPaths",
|
||||||
|
"label": "Validate Path Attribute for FBX"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -133,6 +133,9 @@ class PublishPluginsModel(BaseSettingsModel):
|
||||||
ValidateContainers: ValidateContainersModel = Field(
|
ValidateContainers: ValidateContainersModel = Field(
|
||||||
default_factory=ValidateContainersModel,
|
default_factory=ValidateContainersModel,
|
||||||
title="Validate Latest Containers.")
|
title="Validate Latest Containers.")
|
||||||
|
ValidateFBXPrimitiveHierarchyPaths: ValidateContainersModel = Field(
|
||||||
|
default_factory=ValidateContainersModel,
|
||||||
|
title="Validate Path Attribute for FBX.")
|
||||||
|
|
||||||
|
|
||||||
DEFAULT_HOUDINI_PUBLISH_SETTINGS = {
|
DEFAULT_HOUDINI_PUBLISH_SETTINGS = {
|
||||||
|
|
@ -152,5 +155,10 @@ DEFAULT_HOUDINI_PUBLISH_SETTINGS = {
|
||||||
"enabled": True,
|
"enabled": True,
|
||||||
"optional": True,
|
"optional": True,
|
||||||
"active": True
|
"active": True
|
||||||
|
},
|
||||||
|
"ValidateFBXPrimitiveHierarchyPaths": {
|
||||||
|
"enabled": True,
|
||||||
|
"optional": True,
|
||||||
|
"active": True
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.1.1"
|
__version__ = "0.1.2"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue