From f23630e970da575ea8c9bb74c5de06d9e57abab7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Mar 2015 10:01:32 +1100 Subject: [PATCH] path walker: include object materials --- bam/blend/blendfile_path_walker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bam/blend/blendfile_path_walker.py b/bam/blend/blendfile_path_walker.py index 6aaa744..0337db4 100644 --- a/bam/blend/blendfile_path_walker.py +++ b/bam/blend/blendfile_path_walker.py @@ -660,6 +660,7 @@ class ExpandID: @staticmethod def expand_OB(block): # 'Object' yield from ExpandID._expand_generic_animdata(block) + yield from ExpandID._expand_generic_material(block) yield block.get_pointer(b'data') yield block.get_pointer(b'dup_group')