catch vrayproxy for abc export instead of giving it pointcache family

This commit is contained in:
Milan Kolar 2021-05-06 10:10:03 +02:00
parent 6810a814b6
commit 5923fe3d99
2 changed files with 2 additions and 4 deletions

View file

@ -16,6 +16,3 @@ class CollectVrayProxy(pyblish.api.InstancePlugin):
"""Collector entry point."""
if not instance.data.get('families'):
instance.data["families"] = []
if "pointcache" not in instance.data["families"]:
instance.data["families"].append("pointcache")
self.log.debug("adding to pointcache family")

View file

@ -18,7 +18,8 @@ class ExtractAlembic(openpype.api.Extractor):
label = "Extract Pointcache (Alembic)"
hosts = ["maya"]
families = ["pointcache",
"model"]
"model",
"vrayproxy"]
def process(self, instance):