io_blend_utils: updated BAM 1.1.4 → 1.1.5

This commit is contained in:
Sybren A. Stüvel 2017-04-21 11:49:36 +02:00
parent 7345ae6a1a
commit 08ee275f52
Notes: blender-bot 2023-02-14 07:02:40 +01:00
Referenced by issue blender/blender#51279, Add support for Alembic caches
3 changed files with 7 additions and 2 deletions

View File

@ -19,7 +19,7 @@
bl_info = {
"name": "Blend File Utils",
"author": "Campbell Barton and Sybren A. Stüvel",
"version": (1, 1, 3),
"version": (1, 1, 5),
"blender": (2, 76, 0),
"location": "File > External Data > Blend Utils",
"description": "Utility for packing blend files",
@ -29,7 +29,7 @@ bl_info = {
"category": "Import-Export",
}
BAM_WHEEL_FILE = 'blender_bam-1.1.4-py3-none-any.whl'
BAM_WHEEL_FILE = 'blender_bam-1.1.5-py3-none-any.whl'
import logging

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')