Skip to content

Commit

Permalink
Fix error when exporting bones with deform unchecked
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Garcia committed Dec 12, 2023
1 parent 6b1a453 commit 1e62d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_scene_halo/file_jma/process_scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def process_scene(context, extension, jma_version, game_title, generate_checksum
first_child_node = joined_list.index(find_child_node)
if not find_sibling_node == None:
first_sibling_node = joined_list.index(find_sibling_node)
if not node.parent == None and not node.parent.name.startswith('!'):
if not node.parent == None and node.parent.use_deform and not node.parent.name.startswith('!'):
parent_node = joined_list.index(node.parent)

name = node.name
Expand Down

0 comments on commit 1e62d12

Please sign in to comment.