Skip to content

Commit 9973a17

Browse files
authored
Update Default Arm Settings (#222)
1 parent 147436f commit 9973a17

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/src/data/settings.dart

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ class ArmSettings {
7676

7777
/// Parses arm settings from a JSON map.
7878
ArmSettings.fromJson(Json? json) :
79-
shoulder = json?["shoulder"] ?? 0.005,
80-
elbow = json?["elbow"] ?? 0.005,
81-
swivel = json?["swivel"] ?? 0.2,
82-
pinch = json?["pinch"] ?? 0.002,
83-
lift = json?["lift"] ?? 0.01,
84-
rotate = json?["rotate"] ?? 0.01,
79+
shoulder = json?["shoulder"] ?? 0.008,
80+
elbow = json?["elbow"] ?? 0.008,
81+
swivel = json?["swivel"] ?? 0.02,
82+
pinch = json?["pinch"] ?? 0.006,
83+
lift = json?["lift"] ?? 0.02,
84+
rotate = json?["rotate"] ?? 0.1,
8585
useIK = json?["useIK"] ?? false,
8686
ikIncrement = json?["ikIncrement"] ?? 10;
8787

0 commit comments

Comments
 (0)