We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147436f commit 9973a17Copy full SHA for 9973a17
lib/src/data/settings.dart
@@ -76,12 +76,12 @@ class ArmSettings {
76
77
/// Parses arm settings from a JSON map.
78
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,
+ shoulder = json?["shoulder"] ?? 0.008,
+ elbow = json?["elbow"] ?? 0.008,
+ swivel = json?["swivel"] ?? 0.02,
+ pinch = json?["pinch"] ?? 0.006,
+ lift = json?["lift"] ?? 0.02,
+ rotate = json?["rotate"] ?? 0.1,
85
useIK = json?["useIK"] ?? false,
86
ikIncrement = json?["ikIncrement"] ?? 10;
87
0 commit comments