Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 2dca6a5

Browse files
committed
Adjust default roll ofset to make elbows point down instead of up.
1 parent 9669600 commit 2dca6a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

addons/renik/renik.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ const DEFAULT_THRESHOLD: float = 0.0005
3535
const DEFAULT_LOOP_LIMIT: int = 16
3636

3737
var spine_chain: renik_chain_class = renik_chain_class.new(Vector3(0, 15, -15), 0.5, 0.5, 1, 0)
38-
var limb_arm_left: renik_limb_class = renik_limb_class.new(-0.27777*PI, -0.27777*PI, deg_to_rad(70.0), 0.5, 0.66666,
38+
var limb_arm_left: renik_limb_class = renik_limb_class.new(-0.27777*PI, -0.27777*PI, deg_to_rad(-70.0), 0.5, 0.66666,
3939
deg_to_rad(20.0), deg_to_rad(45.0), 0.33,
4040
Vector3(deg_to_rad(15.0), 0, deg_to_rad(60.0)),
4141
Vector3(2.0, -1.5, -1.0))
42-
var limb_arm_right: renik_limb_class = renik_limb_class.new(0.27777*PI, 0.27777*PI, deg_to_rad(-70.0), 0.5, 0.66666,
42+
var limb_arm_right: renik_limb_class = renik_limb_class.new(0.27777*PI, 0.27777*PI, deg_to_rad(70.0), 0.5, 0.66666,
4343
deg_to_rad(-20.0), deg_to_rad(45.0), 0.33,
4444
Vector3(deg_to_rad(15.0), 0, deg_to_rad(-60.0)),
4545
Vector3(2.0, 1.5, 1.0))

0 commit comments

Comments
 (0)