Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_alembic_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ class AnimationAlembicLoader(plugin.Loader):

product_types = {"animation"}
label = "Import Alembic Animation"
representations = {"abc"}
representations = {"*"}
extensions = {"abc"}
icon = "cube"
color = "orange"
abc_conversion_preset = "maya"
Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ class AnimationFBXLoader(plugin.Loader):

product_types = {"animation"}
label = "Import FBX Animation"
representations = {"fbx"}
representations = {"*"}
extensions = {"fbx"}
icon = "cube"
color = "orange"

Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class CameraLoader(plugin.Loader):

product_types = {"camera"}
label = "Load Camera"
representations = {"fbx"}
representations = {"*"}
extensions = {"fbx"}
icon = "cube"
color = "orange"
loaded_asset_dir = "{folder[path]}/{product[name]}_{version[version]}"
Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_geometrycache_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ class PointCacheAlembicLoader(plugin.Loader):

product_types = {"model", "pointcache"}
label = "Import Alembic Point Cache"
representations = {"abc"}
representations = {"*"}
extensions = {"abc"}
icon = "cube"
color = "orange"

Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_skeletalmesh_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ class SkeletalMeshAlembicLoader(plugin.Loader):

product_types = {"pointcache", "skeletalMesh"}
label = "Import Alembic Skeletal Mesh"
representations = {"abc"}
representations = {"*"}
extensions = {"abc"}
icon = "cube"
color = "orange"

Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_skeletalmesh_fbx.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ class SkeletalMeshFBXLoader(plugin.Loader):

product_types = {"rig", "skeletalMesh"}
label = "Import FBX Skeletal Mesh"
representations = {"fbx"}
representations = {"*"}
extensions = {"fbx"}
icon = "cube"
color = "orange"

Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_staticmesh_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ class StaticMeshAlembicLoader(plugin.Loader):

product_types = {"model", "staticMesh"}
label = "Import Alembic Static Mesh"
representations = {"abc"}
representations = {"*"}
extensions = {"abc"}
icon = "cube"
color = "orange"

Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_staticmesh_fbx.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ class StaticMeshFBXLoader(plugin.Loader):

product_types = {"model", "staticMesh"}
label = "Import FBX Static Mesh"
representations = {"fbx"}
representations = {"*"}
extensions = {"fbx"}
icon = "cube"
color = "orange"

Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_uasset.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class UAssetLoader(plugin.Loader):

product_types = {"uasset"}
label = "Load UAsset"
representations = {"uasset"}
representations = {"*"}
extensions = {"uasset"}
icon = "cube"
color = "orange"

Expand Down
3 changes: 2 additions & 1 deletion client/ayon_unreal/plugins/load/load_yeticache.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ class YetiLoader(plugin.Loader):

product_types = {"yeticacheUE"}
label = "Import Yeti"
representations = {"abc"}
representations = {"*"}
extensions = {"abc"}
icon = "pagelines"
color = "orange"

Expand Down
Loading