diff options
| author | Jacob Palecki <[email protected]> | 2021-09-16 13:07:43 -0700 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-23 22:34:51 -0400 |
| commit | 4197e030c5cfeda5592816c8028152d9b7b599e0 (patch) | |
| tree | a1e5489fbaa0e6e4523dfbb31a3c584c6745a710 /grapher/Models/AccelGUIFactory.cs | |
| parent | Get power cap working (diff) | |
| download | rawaccel-4197e030c5cfeda5592816c8028152d9b7b599e0.tar.xz rawaccel-4197e030c5cfeda5592816c8028152d9b7b599e0.zip | |
Remove weight
Diffstat (limited to 'grapher/Models/AccelGUIFactory.cs')
| -rw-r--r-- | grapher/Models/AccelGUIFactory.cs | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/grapher/Models/AccelGUIFactory.cs b/grapher/Models/AccelGUIFactory.cs index 91a649a..d95489b 100644 --- a/grapher/Models/AccelGUIFactory.cs +++ b/grapher/Models/AccelGUIFactory.cs @@ -46,8 +46,6 @@ namespace grapher.Models TextBox sensitivityBoxX, TextBox sensitivityBoxY, TextBox rotationBox, - TextBox weightBoxX, - TextBox weightBoxY, TextBox inCapBoxXClassic, TextBox inCapBoxYClassic, TextBox outCapBoxXClassic, @@ -96,8 +94,6 @@ namespace grapher.Models Label sensitivityLabel, Label yxRatioLabel, Label rotationLabel, - Label weightLabelX, - Label weightLabelY, Label inCapLabelXClassic, Label inCapLabelYClassic, Label outCapLabelXClassic, @@ -137,8 +133,6 @@ namespace grapher.Models Label sensitivityActiveLabel, Label yxRatioActiveLabel, Label rotationActiveLabel, - Label weightActiveXLabel, - Label weightActiveYLabel, Label inCapActiveXLabelClassic, Label inCapActiveYLabelClassic, Label outCapActiveXLabelClassic, @@ -247,24 +241,6 @@ namespace grapher.Models var directionalityLeft = directionalityPanel.Left; - var weightX = new Option( - weightBoxX, - form, - 1, - weightLabelX, - 0, - new ActiveValueLabel(weightActiveXLabel, activeValueTitleX), - "Weight"); - - var weightY = new Option( - weightBoxY, - form, - 1, - weightLabelY, - optionSetYLeft, - new ActiveValueLabel(weightActiveYLabel, activeValueTitleY), - "Weight"); - var offsetX = new Option( offsetBoxX, form, @@ -559,7 +535,6 @@ namespace grapher.Models decayRateX, growthRateX, smoothX, - weightX, offsetX, limitX, powerClassicX, @@ -582,7 +557,6 @@ namespace grapher.Models decayRateY, growthRateY, smoothY, - weightY, offsetY, limitY, powerClassicY, |