summaryrefslogtreecommitdiff
path: root/grapher/Layouts/JumpLayout.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-04-05 23:36:26 -0700
committerJacob Palecki <[email protected]>2021-04-05 23:36:26 -0700
commit019665015ab30893209ab49fea352405b144f0f8 (patch)
tree92b929da43466d8c4b3b3fb2d9c53daf8eb0d05a /grapher/Layouts/JumpLayout.cs
parentLUT GUI fixes (diff)
downloadrawaccel-019665015ab30893209ab49fea352405b144f0f8.tar.xz
rawaccel-019665015ab30893209ab49fea352405b144f0f8.zip
Add gain switch
Diffstat (limited to 'grapher/Layouts/JumpLayout.cs')
-rw-r--r--grapher/Layouts/JumpLayout.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/grapher/Layouts/JumpLayout.cs b/grapher/Layouts/JumpLayout.cs
index cb77963..d78d273 100644
--- a/grapher/Layouts/JumpLayout.cs
+++ b/grapher/Layouts/JumpLayout.cs
@@ -11,14 +11,16 @@ namespace grapher.Layouts
Index = (int)AccelMode.jump;
LogarithmicCharts = false;
- AccelLayout = new OptionLayout(false, Acceleration);
+ GainSwitchOptionLayout = new OptionLayout(true, Gain);
+ AccelLayout = new OptionLayout(true, Smooth);
ScaleLayout = new OptionLayout(false, string.Empty);
- CapLayout = new OptionLayout(true, string.Empty);
+ CapLayout = new OptionLayout(true, Cap);
WeightLayout = new OptionLayout(false, Weight);
OffsetLayout = new OptionLayout(true, Offset);
LimitLayout = new OptionLayout(false, Limit);
ExponentLayout = new OptionLayout(false, string.Empty);
MidpointLayout = new OptionLayout(false, string.Empty);
+ LUTTextLayout = new OptionLayout(false, string.Empty);
}
}
}