mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +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,
|
||||
"optional": true,
|
||||
"active": true
|
||||
},
|
||||
"ValidateFBXPrimitiveHierarchyPaths": {
|
||||
"enabled": true,
|
||||
"optional": true,
|
||||
"active": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,8 +43,12 @@
|
|||
{
|
||||
"key": "ValidateContainers",
|
||||
"label": "ValidateContainers"
|
||||
},
|
||||
{
|
||||
"key": "ValidateFBXPrimitiveHierarchyPaths",
|
||||
"label": "Validate Path Attribute for FBX"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -133,6 +133,9 @@ class PublishPluginsModel(BaseSettingsModel):
|
|||
ValidateContainers: ValidateContainersModel = Field(
|
||||
default_factory=ValidateContainersModel,
|
||||
title="Validate Latest Containers.")
|
||||
ValidateFBXPrimitiveHierarchyPaths: ValidateContainersModel = Field(
|
||||
default_factory=ValidateContainersModel,
|
||||
title="Validate Path Attribute for FBX.")
|
||||
|
||||
|
||||
DEFAULT_HOUDINI_PUBLISH_SETTINGS = {
|
||||
|
|
@ -152,5 +155,10 @@ DEFAULT_HOUDINI_PUBLISH_SETTINGS = {
|
|||
"enabled": True,
|
||||
"optional": 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