Added support for Alembic caches.

This commit is contained in:
2017-04-21 11:40:49 +02:00
parent 0304489db0
commit 8994385c63
4 changed files with 31 additions and 0 deletions

View File

@@ -581,6 +581,11 @@ class FilePath:
if block[b'source_mode'] == C_defs.CACHE_LIBRARY_SOURCE_CACHE:
yield FPElem_block_path(basedir, level, (block, b'input_filepath')), extra_info
@staticmethod
def _from_block_CF(block, basedir, extra_info, level):
yield FPElem_block_path(basedir, level, (block, b'filepath')), extra_info
@staticmethod
def _from_block_SC(block, basedir, extra_info, level):
block_ed = block.get_pointer(b'ed')