glTF importer: add comment after recent changes

This commit is contained in:
Julien Duroure
2025-08-29 16:45:07 +02:00
parent 2529b79486
commit a2614464e5

View File

@@ -389,7 +389,7 @@ def do_primitives(gltf, mesh_idx, skin_idx, mesh, ob):
continue
key_block = ob.shape_key_add(name=sk_name)
key_block.value = 0.0
key_block.value = 0.0 # Starting Blender 5.0, SK are created with weight 1.0, so setting to 0.0, as 0.0 is the default glTF SK weight
key_block.points.foreach_set('co', squish(sk_vert_locs[sk_i], np.float32))
sk_i += 1