skelform-python 0.2.0__tar.gz → 0.2.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: skelform_python
3
- Version: 0.2.0
3
+ Version: 0.2.0.1
4
4
  Summary: SkelForm runtime for Python
5
5
  Author-email: Retropaint <darkglasses1122@gmail.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "skelform_python"
7
- version = "0.2.0"
7
+ version = "0.2.0.1"
8
8
  authors = [
9
9
  { name="Retropaint", email="darkglasses1122@gmail.com" },
10
10
  ]
@@ -177,7 +177,7 @@ def inverse_kinematics(bones: list[Bone], ik_root_ids: list[int]):
177
177
  if (
178
178
  family.ik_target_id == -1
179
179
  or not family.ik_bone_ids
180
- or not family.ik_target_id
180
+ or family.ik_target_id == -1
181
181
  ):
182
182
  continue
183
183