Skip to content

Commit

Permalink
Fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
julienduroure committed Sep 12, 2024
1 parent 005b733 commit 56679d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/io_scene_gltf2/blender/exp/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def __gather_weights(blender_mesh: bpy.types.Mesh,
return None

# Not for GN Instances
if blender_mesh.is_evaluated is True and blender_mesh.get('gltf2_mesh_applied'):
if blender_mesh.is_evaluated is True and blender_mesh.get('gltf2_mesh_applied') is None:
return None

morph_max = len(blender_mesh.shape_keys.key_blocks) - 1
Expand Down

0 comments on commit 56679d3

Please sign in to comment.