add supports to load ornatrix abc cache

This commit is contained in:
Kayla Man 2024-06-18 16:33:32 +08:00
parent 2960816591
commit 3508441de4
3 changed files with 4 additions and 2 deletions

View file

@ -33,7 +33,8 @@ class ArnoldStandinLoader(plugin.Loader):
"model",
"proxyAbc",
"pointcache",
"usd"
"usd",
"OxCache"
}
representations = {"ass", "abc", "usda", "usdc", "usd"}

View file

@ -124,6 +124,7 @@ class ReferenceLoader(plugin.ReferenceLoader):
"skeletalMesh",
"mvLook",
"matchmove",
"OxCache",
}
representations = {"ma", "abc", "fbx", "mb"}

View file

@ -20,7 +20,7 @@ from ayon_maya.api.plugin import get_load_color_for_product_type
class VRayProxyLoader(plugin.Loader):
"""Load VRay Proxy with Alembic or VrayMesh."""
product_types = {"vrayproxy", "model", "pointcache", "animation"}
product_types = {"vrayproxy", "model", "pointcache", "animation", "OxCache"}
representations = {"vrmesh", "abc"}
label = "Import VRay Proxy"