include fbx validator in settings

This commit is contained in:
Mustafa-Zarkash 2023-08-23 19:11:47 +03:00
parent 1d0c78f044
commit 4ea1f2b586
4 changed files with 19 additions and 2 deletions

View file

@ -97,6 +97,11 @@
"enabled": true,
"optional": true,
"active": true
},
"ValidateFBXPrimitiveHierarchyPaths": {
"enabled": true,
"optional": true,
"active": true
}
}
}

View file

@ -43,8 +43,12 @@
{
"key": "ValidateContainers",
"label": "ValidateContainers"
},
{
"key": "ValidateFBXPrimitiveHierarchyPaths",
"label": "Validate Path Attribute for FBX"
}
]
}
]
}
}

View file

@ -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
}
}

View file

@ -1 +1 @@
__version__ = "0.1.1"
__version__ = "0.1.2"