Skip to content

Commit

Permalink
Fix joint radius value retrieval from guide option #367
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcampos committed Jan 20, 2024
1 parent 4c2972b commit d8ea20d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/scripts/mgear/shifter/component/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2098,7 +2098,7 @@ def jointStructure(self):
self.jointList.append(self.addJoint(**jpo))

for jnt in self.jointList:
radiusValue = self.rig.guide.model.joint_radius.get()
radiusValue = self.options["joint_radius"]
jnt.radius.set(radiusValue)

# =====================================================
Expand Down

0 comments on commit d8ea20d

Please sign in to comment.