Merge pull request #6150 from ynput/bugfix/include_model_family_in_houdini_fbx_loader

BugFix: Include Model in FBX Loader in Houdini
This commit is contained in:
Kayla Man 2024-01-19 16:52:41 +08:00 committed by GitHub
commit b1677352fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,8 +16,9 @@ class FbxLoader(load.LoaderPlugin):
order = -10
families = ["staticMesh", "fbx"]
representations = ["fbx"]
families = ["*"]
representations = ["*"]
extensions = {"fbx"}
def load(self, context, name=None, namespace=None, data=None):