mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 13:52:15 +01:00
commit
c2bd2d2123
2 changed files with 4 additions and 5 deletions
|
|
@ -45,8 +45,6 @@ class ExtractColorbleedAnimation(colorbleed.api.Extractor):
|
|||
self.log.info("Extracting animation..")
|
||||
dirname = self.staging_dir(instance)
|
||||
|
||||
self.log.info("nodes: %s" % str(nodes))
|
||||
|
||||
parent_dir = self.staging_dir(instance)
|
||||
filename = "{name}.abc".format(**instance.data)
|
||||
path = os.path.join(parent_dir, filename)
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
@ -15,9 +15,10 @@ class ExtractColorbleedPointcache(colorbleed.api.Extractor):
|
|||
|
||||
"""
|
||||
|
||||
label = "Extract Pointcache"
|
||||
label = "Extract Pointcache (Alembic)"
|
||||
hosts = ["maya"]
|
||||
families = ["colorbleed.pointcache"]
|
||||
families = ["colorbleed.pointcache",
|
||||
"colorbleed.model"]
|
||||
|
||||
def process(self, instance):
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue