From dc37c5b3243e2305dfc4f19e9718199dcd686f43 Mon Sep 17 00:00:00 2001 From: aardschok Date: Fri, 22 Sep 2017 14:58:23 +0200 Subject: [PATCH] added model to pointcache extractor, rename pointcache to alembic --- colorbleed/plugins/maya/publish/extract_pointcache.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/colorbleed/plugins/maya/publish/extract_pointcache.py b/colorbleed/plugins/maya/publish/extract_pointcache.py index f29f7846bf..88252c4d52 100644 --- a/colorbleed/plugins/maya/publish/extract_pointcache.py +++ b/colorbleed/plugins/maya/publish/extract_pointcache.py @@ -7,7 +7,7 @@ import colorbleed.api from colorbleed.maya.lib import extract_alembic -class ExtractColorbleedPointcache(colorbleed.api.Extractor): +class ExtractColorbleedAlembic(colorbleed.api.Extractor): """Produce an alembic of just point positions and normals. Positions and normals are preserved, but nothing more, @@ -17,7 +17,8 @@ class ExtractColorbleedPointcache(colorbleed.api.Extractor): label = "Extract Pointcache" hosts = ["maya"] - families = ["colorbleed.pointcache"] + families = ["colorbleed.pointcache", + "colorbleed.model"] def process(self, instance):