mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #3267 from pypeclub/enhancement/ue-skeletalmesh-loader
Unreal: add support for skeletalMesh and staticMesh to loaders
This commit is contained in:
commit
169864111a
2 changed files with 2 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ import unreal # noqa
|
|||
class SkeletalMeshFBXLoader(plugin.Loader):
|
||||
"""Load Unreal SkeletalMesh from FBX."""
|
||||
|
||||
families = ["rig"]
|
||||
families = ["rig", "skeletalMesh"]
|
||||
label = "Import FBX Skeletal Mesh"
|
||||
representations = ["fbx"]
|
||||
icon = "cube"
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ import unreal # noqa
|
|||
class StaticMeshFBXLoader(plugin.Loader):
|
||||
"""Load Unreal StaticMesh from FBX."""
|
||||
|
||||
families = ["model", "unrealStaticMesh"]
|
||||
families = ["model", "staticMesh"]
|
||||
label = "Import FBX Static Mesh"
|
||||
representations = ["fbx"]
|
||||
icon = "cube"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue