Skip to content

Commit

Permalink
sugiany#48 Add support for property deletion in 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
UuuNyaa committed Jun 6, 2022
1 parent afacd99 commit e8c2b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmd_tools/operators/rigid_body.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def _update_group(obj, group):

def _references(obj):
yield obj
if obj.proxy:
if getattr(obj, 'proxy', None):
yield from _references(obj.proxy)
if getattr(obj, 'override_library', None):
yield from _references(obj.override_library.reference)
Expand Down

0 comments on commit e8c2b2b

Please sign in to comment.