diff --git a/DS4Windows/DS4Control/ScpUtil.cs b/DS4Windows/DS4Control/ScpUtil.cs
index d270594..74c3bfd 100644
--- a/DS4Windows/DS4Control/ScpUtil.cs
+++ b/DS4Windows/DS4Control/ScpUtil.cs
@@ -2975,13 +2975,13 @@ namespace DS4Windows
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/Rainbow"); double.TryParse(Item.InnerText, out rainbow[device]); }
catch { rainbow[device] = 0; missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/LSDeadZone"); int.TryParse(Item.InnerText, out lsModInfo[device].deadZone); }
- catch { lsModInfo[device].deadZone = 0; missingSetting = true; }
+ catch { lsModInfo[device].deadZone = 10; missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/RSDeadZone"); int.TryParse(Item.InnerText, out rsModInfo[device].deadZone); }
- catch { rsModInfo[device].deadZone = 0; missingSetting = true; }
+ catch { rsModInfo[device].deadZone = 10; missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/LSAntiDeadZone"); int.TryParse(Item.InnerText, out lsModInfo[device].antiDeadZone); }
- catch { lsModInfo[device].antiDeadZone = 0; missingSetting = true; }
+ catch { lsModInfo[device].antiDeadZone = 25; missingSetting = true; }
try { Item = m_Xdoc.SelectSingleNode("/" + rootname + "/RSAntiDeadZone"); int.TryParse(Item.InnerText, out rsModInfo[device].antiDeadZone); }
- catch { rsModInfo[device].antiDeadZone = 0; missingSetting = true; }
+ catch { rsModInfo[device].antiDeadZone = 25; missingSetting = true; }
try {
Item = m_Xdoc.SelectSingleNode("/" + rootname + "/LSMaxZone"); int temp = 100;
@@ -4548,8 +4548,8 @@ namespace DS4Windows
rumble[device] = 100;
touchSensitivity[device] = 100;
l2ModInfo[device].deadZone = r2ModInfo[device].deadZone = 0;
- lsModInfo[device].deadZone = rsModInfo[device].deadZone = 0;
- lsModInfo[device].antiDeadZone = rsModInfo[device].antiDeadZone = 0;
+ lsModInfo[device].deadZone = rsModInfo[device].deadZone = 10;
+ lsModInfo[device].antiDeadZone = rsModInfo[device].antiDeadZone = 25;
lsModInfo[device].maxZone = rsModInfo[device].maxZone = 100;
l2ModInfo[device].antiDeadZone = r2ModInfo[device].antiDeadZone = 0;
l2ModInfo[device].maxZone = r2ModInfo[device].maxZone = 100;
diff --git a/DS4Windows/DS4Forms/Options.Designer.cs b/DS4Windows/DS4Forms/Options.Designer.cs
index 9dd8da6..9ba8480 100644
--- a/DS4Windows/DS4Forms/Options.Designer.cs
+++ b/DS4Windows/DS4Forms/Options.Designer.cs
@@ -217,6 +217,9 @@
this.gyroMousestickXAxisCom = new System.Windows.Forms.ComboBox();
this.gyroMouseStickInvertXCk = new System.Windows.Forms.CheckBox();
this.gyroMouseStickInvertYCk = new System.Windows.Forms.CheckBox();
+ this.gyroMStickUseSmoothCk = new System.Windows.Forms.CheckBox();
+ this.label39 = new System.Windows.Forms.Label();
+ this.gyroMStickSmoothWeightNUD = new System.Windows.Forms.NumericUpDown();
this.tCControls = new System.Windows.Forms.TabControl();
this.tPControls = new System.Windows.Forms.TabPage();
this.lBControls = new System.Windows.Forms.ListBox();
@@ -427,9 +430,6 @@
this.optionsTouchInvStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.shareTouchInvStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.psTouchInvStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.gyroMStickUseSmoothCk = new System.Windows.Forms.CheckBox();
- this.gyroMStickSmoothWeightNUD = new System.Windows.Forms.NumericUpDown();
- this.label39 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.nUDRainbow)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tBBlueBar)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tBGreenBar)).BeginInit();
@@ -483,6 +483,7 @@
((System.ComponentModel.ISupportInitialize)(this.gyroMouseStickAntiDeadX)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gyroMouseStickAntiDeadY)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gyroMStickVertScaleNUD)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.gyroMStickSmoothWeightNUD)).BeginInit();
this.tCControls.SuspendLayout();
this.tPControls.SuspendLayout();
this.pnlController.SuspendLayout();
@@ -532,7 +533,6 @@
((System.ComponentModel.ISupportInitialize)(this.nUDSZS)).BeginInit();
this.cMGyroTriggers.SuspendLayout();
this.cMTouchDisableInvert.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.gyroMStickSmoothWeightNUD)).BeginInit();
this.SuspendLayout();
//
// lowColorChooserButton
@@ -923,6 +923,11 @@
0,
0});
this.nUDRS.Name = "nUDRS";
+ this.nUDRS.Value = new decimal(new int[] {
+ 8,
+ 0,
+ 0,
+ 131072});
this.nUDRS.ValueChanged += new System.EventHandler(this.numUDRS_ValueChanged);
//
// numUDMouseSens
@@ -956,6 +961,11 @@
0,
0});
this.nUDLS.Name = "nUDLS";
+ this.nUDLS.Value = new decimal(new int[] {
+ 8,
+ 0,
+ 0,
+ 131072});
this.nUDLS.ValueChanged += new System.EventHandler(this.numUDLS_ValueChanged);
//
// nUDL2
@@ -2254,6 +2264,35 @@
this.gyroMouseStickInvertYCk.UseVisualStyleBackColor = true;
this.gyroMouseStickInvertYCk.CheckedChanged += new System.EventHandler(this.GyroMouseStickInvert_CheckedChanged);
//
+ // gyroMStickUseSmoothCk
+ //
+ resources.ApplyResources(this.gyroMStickUseSmoothCk, "gyroMStickUseSmoothCk");
+ this.gyroMStickUseSmoothCk.Name = "gyroMStickUseSmoothCk";
+ this.gyroMStickUseSmoothCk.UseVisualStyleBackColor = true;
+ this.gyroMStickUseSmoothCk.CheckedChanged += new System.EventHandler(this.GyroMStickUseSmoothCk_CheckedChanged);
+ //
+ // label39
+ //
+ resources.ApplyResources(this.label39, "label39");
+ this.label39.Name = "label39";
+ //
+ // gyroMStickSmoothWeightNUD
+ //
+ this.gyroMStickSmoothWeightNUD.DecimalPlaces = 3;
+ resources.ApplyResources(this.gyroMStickSmoothWeightNUD, "gyroMStickSmoothWeightNUD");
+ this.gyroMStickSmoothWeightNUD.Maximum = new decimal(new int[] {
+ 1,
+ 0,
+ 0,
+ 0});
+ this.gyroMStickSmoothWeightNUD.Name = "gyroMStickSmoothWeightNUD";
+ this.gyroMStickSmoothWeightNUD.Value = new decimal(new int[] {
+ 5,
+ 0,
+ 0,
+ 65536});
+ this.gyroMStickSmoothWeightNUD.ValueChanged += new System.EventHandler(this.GyroMStickSmoothWeightNUD_ValueChanged);
+ //
// tCControls
//
this.tCControls.Controls.Add(this.tPControls);
@@ -3246,6 +3285,11 @@
0,
0});
this.nUDRSAntiDead.Name = "nUDRSAntiDead";
+ this.nUDRSAntiDead.Value = new decimal(new int[] {
+ 20,
+ 0,
+ 0,
+ 131072});
this.nUDRSAntiDead.ValueChanged += new System.EventHandler(this.nUDRSAntiDead_ValueChanged);
//
// label2
@@ -3268,6 +3312,11 @@
0,
0});
this.nUDLSAntiDead.Name = "nUDLSAntiDead";
+ this.nUDLSAntiDead.Value = new decimal(new int[] {
+ 20,
+ 0,
+ 0,
+ 131072});
this.nUDLSAntiDead.ValueChanged += new System.EventHandler(this.nUDLSAntiDead_ValueChanged);
//
// label1
@@ -4597,35 +4646,6 @@
resources.ApplyResources(this.psTouchInvStripMenuItem, "psTouchInvStripMenuItem");
this.psTouchInvStripMenuItem.CheckedChanged += new System.EventHandler(this.TouchDisableInvert_CheckedChanged);
//
- // gyroMStickUseSmoothCk
- //
- resources.ApplyResources(this.gyroMStickUseSmoothCk, "gyroMStickUseSmoothCk");
- this.gyroMStickUseSmoothCk.Name = "gyroMStickUseSmoothCk";
- this.gyroMStickUseSmoothCk.UseVisualStyleBackColor = true;
- this.gyroMStickUseSmoothCk.CheckedChanged += new System.EventHandler(this.GyroMStickUseSmoothCk_CheckedChanged);
- //
- // gyroMStickSmoothWeightNUD
- //
- this.gyroMStickSmoothWeightNUD.DecimalPlaces = 3;
- resources.ApplyResources(this.gyroMStickSmoothWeightNUD, "gyroMStickSmoothWeightNUD");
- this.gyroMStickSmoothWeightNUD.Maximum = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.gyroMStickSmoothWeightNUD.Name = "gyroMStickSmoothWeightNUD";
- this.gyroMStickSmoothWeightNUD.Value = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.gyroMStickSmoothWeightNUD.ValueChanged += new System.EventHandler(this.GyroMStickSmoothWeightNUD_ValueChanged);
- //
- // label39
- //
- resources.ApplyResources(this.label39, "label39");
- this.label39.Name = "label39";
- //
// Options
//
resources.ApplyResources(this, "$this");
@@ -4701,6 +4721,7 @@
((System.ComponentModel.ISupportInitialize)(this.gyroMouseStickAntiDeadX)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.gyroMouseStickAntiDeadY)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.gyroMStickVertScaleNUD)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.gyroMStickSmoothWeightNUD)).EndInit();
this.tCControls.ResumeLayout(false);
this.tPControls.ResumeLayout(false);
this.pnlController.ResumeLayout(false);
@@ -4760,7 +4781,6 @@
((System.ComponentModel.ISupportInitialize)(this.nUDSZS)).EndInit();
this.cMGyroTriggers.ResumeLayout(false);
this.cMTouchDisableInvert.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.gyroMStickSmoothWeightNUD)).EndInit();
this.ResumeLayout(false);
}
diff --git a/DS4Windows/DS4Forms/Options.cs b/DS4Windows/DS4Forms/Options.cs
index 55a7579..5bec84e 100644
--- a/DS4Windows/DS4Forms/Options.cs
+++ b/DS4Windows/DS4Forms/Options.cs
@@ -520,7 +520,7 @@ namespace DS4Windows.Forms
}
catch
{
- nUDLS.Value = 0;
+ nUDLS.Value = 0.08m;
}
try
{
@@ -528,7 +528,7 @@ namespace DS4Windows.Forms
}
catch
{
- nUDRS.Value = 0;
+ nUDRS.Value = 0.08m;
}
try
@@ -537,7 +537,7 @@ namespace DS4Windows.Forms
}
catch
{
- nUDLSAntiDead.Value = 0;
+ nUDLSAntiDead.Value = 0.20m;
}
try
{
@@ -545,7 +545,7 @@ namespace DS4Windows.Forms
}
catch
{
- nUDRSAntiDead.Value = 0;
+ nUDRSAntiDead.Value = 0.20m;
}
try
@@ -884,10 +884,10 @@ namespace DS4Windows.Forms
nUDR2.Value = 0;
nUDL2Maxzone.Value = 1;
nUDR2Maxzone.Value = 1;
- nUDLS.Value = 0;
- nUDRS.Value = 0;
- nUDLSAntiDead.Value = 0;
- nUDRSAntiDead.Value = 0;
+ nUDLS.Value = 0.08m;
+ nUDRS.Value = 0.08m;
+ nUDLSAntiDead.Value = 0.20m;
+ nUDRSAntiDead.Value = 0.20m;
nUDLSMaxZone.Value = 1;
nUDRSMaxZone.Value = 1;
nUDLSRotation.Value = 0;
diff --git a/DS4Windows/DS4Forms/Options.resx b/DS4Windows/DS4Forms/Options.resx
index 3cc9b88..5395a8e 100644
--- a/DS4Windows/DS4Forms/Options.resx
+++ b/DS4Windows/DS4Forms/Options.resx
@@ -5367,6 +5367,315 @@
12
+
+ label36
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 0
+
+
+ btnGyroMStickTrig
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 1
+
+
+ gyroMStickTrigBehaveCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 2
+
+
+ gyroMStickToggleCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 3
+
+
+ label29
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 4
+
+
+ gyroMouseStickDZ
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 5
+
+
+ label30
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 6
+
+
+ gyroMouseStickMaxZ
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 7
+
+
+ label31
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 8
+
+
+ gyroMouseStickAntiDeadX
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 9
+
+
+ label32
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 10
+
+
+ gyroMouseStickAntiDeadY
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 11
+
+
+ label37
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 12
+
+
+ gyroMStickVertScaleNUD
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 13
+
+
+ label38
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 14
+
+
+ label35
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 15
+
+
+ gyroMouseStickEvalCombo
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 16
+
+
+ label33
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 17
+
+
+ gyroMousestickXAxisCom
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 18
+
+
+ gyroMouseStickInvertXCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 19
+
+
+ gyroMouseStickInvertYCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 20
+
+
+ gyroMStickUseSmoothCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 21
+
+
+ label39
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 22
+
+
+ gyroMStickSmoothWeightNUD
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gyroMouseJoyFLP
+
+
+ 23
+
+
+ 8, 47
+
+
+ 252, 210
+
+
+ 260
+
+
+ gyroMouseJoyFLP
+
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBGyro
+
+
+ 0
+
True
@@ -5997,27 +6306,6 @@
23
-
- 8, 47
-
-
- 252, 210
-
-
- 260
-
-
- gyroMouseJoyFLP
-
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBGyro
-
-
- 0
-
tPControls
@@ -8940,111 +9228,6 @@
1
-
- tPDeadzone
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 0
-
-
- antiDeadzoneTabPage
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 1
-
-
- maxZoneTabPage
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 2
-
-
- squStickTabPage
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 3
-
-
- tPOutCurve
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 4
-
-
- tPCurve
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 5
-
-
- tpRotation
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 6
-
-
- 281, 55
-
-
- 272, 106
-
-
- 234
-
-
- tCSens
-
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- fLPSettings
-
-
- 3
-
4, 22
@@ -9072,177 +9255,6 @@
0
-
- nUDSixaxisZAntiDead
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 0
-
-
- nUDSixaxisXAntiDead
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 1
-
-
- label20
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 2
-
-
- label19
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 3
-
-
- nUDR2AntiDead
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 4
-
-
- label3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 5
-
-
- nUDL2AntiDead
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 6
-
-
- label4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 7
-
-
- nUDRSAntiDead
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 8
-
-
- label2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 9
-
-
- nUDLSAntiDead
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 10
-
-
- label1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- antiDeadzoneTabPage
-
-
- 11
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 264, 80
-
-
- 2
-
-
- Anti-Deadzone
-
-
- antiDeadzoneTabPage
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 1
-
214, 29
@@ -9549,6 +9561,33 @@
11
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 264, 80
+
+
+ 2
+
+
+ Anti-Deadzone
+
+
+ antiDeadzoneTabPage
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 1
+
nUDSixAxisZMaxZone
@@ -9720,6 +9759,468 @@
2
+
+ RoundnessNUpDown
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ squStickTabPage
+
+
+ 0
+
+
+ label28
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ squStickTabPage
+
+
+ 1
+
+
+ rsSquStickCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ squStickTabPage
+
+
+ 2
+
+
+ lsSquStickCk
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ squStickTabPage
+
+
+ 3
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 264, 80
+
+
+ 6
+
+
+ Square Stick
+
+
+ squStickTabPage
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 3
+
+
+ lbCurveEditorURL
+
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 0
+
+
+ tBCustomOutputCurve
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 1
+
+
+ cBSixaxisZOutputCurve
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 2
+
+
+ cBSixaxisXOutputCurve
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 3
+
+
+ label24
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 4
+
+
+ label23
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 5
+
+
+ cBR2OutputCurve
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 6
+
+
+ cBL2OutputCurve
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 7
+
+
+ label22
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 8
+
+
+ label21
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 9
+
+
+ rsOutCurveComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 10
+
+
+ lsOutCurveComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 11
+
+
+ label10
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 12
+
+
+ label9
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPOutCurve
+
+
+ 13
+
+
+ 4, 22
+
+
+ 264, 80
+
+
+ 4
+
+
+ Output Curve
+
+
+ tPOutCurve
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 4
+
+
+ nUDLSCurve
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 0
+
+
+ nUDRSCurve
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 1
+
+
+ lbRSCurve
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 2
+
+
+ lbRSCurvePercent
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 3
+
+
+ lbLSCurvePercent
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 4
+
+
+ lbLSCurve
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tPCurve
+
+
+ 5
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 264, 80
+
+
+ 1
+
+
+ Curve (Input)
+
+
+ tPCurve
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 5
+
+
+ nUDRSRotation
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tpRotation
+
+
+ 0
+
+
+ label14
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tpRotation
+
+
+ 1
+
+
+ nUDLSRotation
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tpRotation
+
+
+ 2
+
+
+ label13
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tpRotation
+
+
+ 3
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 264, 80
+
+
+ 5
+
+
+ Rotation
+
+
+ tpRotation
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tCSens
+
+
+ 6
+
+
+ 281, 55
+
+
+ 272, 106
+
+
+ 234
+
+
+ tCSens
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPSettings
+
+
+ 3
+
220, 29
@@ -10026,81 +10527,6 @@
11
-
- RoundnessNUpDown
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- squStickTabPage
-
-
- 0
-
-
- label28
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- squStickTabPage
-
-
- 1
-
-
- rsSquStickCk
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- squStickTabPage
-
-
- 2
-
-
- lsSquStickCk
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- squStickTabPage
-
-
- 3
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 264, 80
-
-
- 6
-
-
- Square Stick
-
-
- squStickTabPage
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 3
-
216, 17
@@ -10203,198 +10629,6 @@
3
-
- lbCurveEditorURL
-
-
- System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 0
-
-
- tBCustomOutputCurve
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 1
-
-
- cBSixaxisZOutputCurve
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 2
-
-
- cBSixaxisXOutputCurve
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 3
-
-
- label24
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 4
-
-
- label23
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 5
-
-
- cBR2OutputCurve
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 6
-
-
- cBL2OutputCurve
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 7
-
-
- label22
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 8
-
-
- label21
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 9
-
-
- rsOutCurveComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 10
-
-
- lsOutCurveComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 11
-
-
- label10
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 12
-
-
- label9
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPOutCurve
-
-
- 13
-
-
- 4, 22
-
-
- 264, 80
-
-
- 4
-
-
- Output Curve
-
-
- tPOutCurve
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 4
-
True
@@ -10881,105 +11115,6 @@
13
-
- nUDLSCurve
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPCurve
-
-
- 0
-
-
- nUDRSCurve
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPCurve
-
-
- 1
-
-
- lbRSCurve
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPCurve
-
-
- 2
-
-
- lbRSCurvePercent
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPCurve
-
-
- 3
-
-
- lbLSCurvePercent
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPCurve
-
-
- 4
-
-
- lbLSCurve
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tPCurve
-
-
- 5
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 264, 80
-
-
- 1
-
-
- Curve (Input)
-
-
- tPCurve
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 5
-
36, 16
@@ -11148,81 +11283,6 @@
5
-
- nUDRSRotation
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpRotation
-
-
- 0
-
-
- label14
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpRotation
-
-
- 1
-
-
- nUDLSRotation
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpRotation
-
-
- 2
-
-
- label13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tpRotation
-
-
- 3
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 264, 80
-
-
- 5
-
-
- Rotation
-
-
- tpRotation
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tCSens
-
-
- 6
-
160, 21
@@ -11328,6 +11388,267 @@
True
+
+ label34
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBGyro
+
+
+ 1
+
+
+ gyroOutputMode
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBGyro
+
+
+ 2
+
+
+ pnlSAMouse
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBGyro
+
+
+ 4
+
+
+ 3, 242
+
+
+ 272, 256
+
+
+ 248
+
+
+ Gyro
+
+
+ gBGyro
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPSettings
+
+
+ 1
+
+
+ lbL2S
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 0
+
+
+ nUDL2S
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 1
+
+
+ nUDLSS
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 2
+
+
+ lbSixaxisXS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 3
+
+
+ nUDR2S
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 4
+
+
+ lbSixaxisZS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 5
+
+
+ nUDRSS
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 6
+
+
+ lbR2LS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 7
+
+
+ nUDSXS
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 8
+
+
+ lbRSS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 9
+
+
+ lbLSS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 10
+
+
+ nUDSZS
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ gBSensitivity
+
+
+ 11
+
+
+ 281, 165
+
+
+ 3, 1, 3, 1
+
+
+ 272, 76
+
+
+ 257
+
+
+ Sensitivity
+
+
+ gBSensitivity
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ fLPSettings
+
+
+ 4
+
+
+ Fill
+
+
+ TopDown
+
+
+ 446, 0
+
+
+ 2, 2, 2, 2
+
+
+ 565, 511
+
+
+ 254
+
+
+ fLPSettings
+
+
+ System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
True
@@ -11673,231 +11994,6 @@
4
-
- 3, 242
-
-
- 272, 256
-
-
- 248
-
-
- Gyro
-
-
- gBGyro
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- fLPSettings
-
-
- 1
-
-
- lbL2S
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 0
-
-
- nUDL2S
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 1
-
-
- nUDLSS
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 2
-
-
- lbSixaxisXS
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 3
-
-
- nUDR2S
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 4
-
-
- lbSixaxisZS
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 5
-
-
- nUDRSS
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 6
-
-
- lbR2LS
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 7
-
-
- nUDSXS
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 8
-
-
- lbRSS
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 9
-
-
- lbLSS
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 10
-
-
- nUDSZS
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- gBSensitivity
-
-
- 11
-
-
- 281, 165
-
-
- 3, 1, 3, 1
-
-
- 272, 76
-
-
- 257
-
-
- Sensitivity
-
-
- gBSensitivity
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- fLPSettings
-
-
- 4
-
-
- Fill
-
-
- TopDown
-
-
- 446, 0
-
-
- 2, 2, 2, 2
-
-
- 565, 511
-
-
- 254
-
-
- fLPSettings
-
-
- System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 3
-
True