Renaming some unreal loaders

This commit is contained in:
Simone Barbieri 2022-12-05 12:36:46 +00:00
parent ad4e504146
commit ef02b58ea9
5 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ import unreal # noqa
class SkeletalMeshAlembicLoader(plugin.Loader):
"""Load Unreal SkeletalMesh from Alembic"""
families = ["pointcache"]
families = ["pointcache", "skeletalMesh"]
label = "Import Alembic Skeletal Mesh"
representations = ["abc"]
icon = "cube"

View file

@ -14,7 +14,7 @@ import unreal # noqa
class StaticMeshAlembicLoader(plugin.Loader):
"""Load Unreal StaticMesh from Alembic"""
families = ["model"]
families = ["model", "staticMesh"]
label = "Import Alembic Static Mesh"
representations = ["abc"]
icon = "cube"