diff --git a/CHANGELOG.md b/CHANGELOG.md index d468bc5..f90393a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ changed functionality, fixed bugs). - Windows compatibility fix when using mapped network storage. - Windows compatibility fix when using different assets with the same path but on different drives. - Allow setting the Shaman JWT authentication token in the `SHAMAN_JWT_TOKEN` environment variable. +- Blender 2.81 compatibility fix. ## Version 1.1.1 (2019-04-18) diff --git a/blender_asset_tracer/trace/modifier_walkers.py b/blender_asset_tracer/trace/modifier_walkers.py index d227679..59c631c 100644 --- a/blender_asset_tracer/trace/modifier_walkers.py +++ b/blender_asset_tracer/trace/modifier_walkers.py @@ -215,12 +215,6 @@ def modifier_fluid_sim(ctx: ModifierContext, modifier: blendfile.BlendFileBlock, yield result.BlockUsage(fss, bpath, path_full_field=field, is_sequence=True, block_name=block_name) - # TODO(Sybren): check whether this is actually used - # (in Blender's source there is a point_cache pointer, but it's NULL in my test) - pointcache = modifier.get_pointer(b'point_cache') - if pointcache: - yield from _walk_point_cache(ctx, block_name, modifier.bfile, pointcache, cdefs.PTCACHE_EXT) - @mod_handler(cdefs.eModifierType_Smokesim) def modifier_smoke_sim(ctx: ModifierContext, modifier: blendfile.BlendFileBlock, block_name: bytes) \