summaryrefslogtreecommitdiff
path: root/grapher/Layouts/JumpLayout.cs
diff options
context:
space:
mode:
authora1xd <[email protected]>2021-04-06 01:21:42 -0400
committera1xd <[email protected]>2021-04-06 01:21:42 -0400
commit7c1f14845bc948e9ea25908e96099203d9433a69 (patch)
treeeadfae6ec0a775a35c29807bde3c20be8160e034 /grapher/Layouts/JumpLayout.cs
parentLUT text layout (diff)
downloadrawaccel-7c1f14845bc948e9ea25908e96099203d9433a69.tar.xz
rawaccel-7c1f14845bc948e9ea25908e96099203d9433a69.zip
update wrapper + writer to handle lut
grapher is building but applying options still broken for the most part
Diffstat (limited to 'grapher/Layouts/JumpLayout.cs')
-rw-r--r--grapher/Layouts/JumpLayout.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/grapher/Layouts/JumpLayout.cs b/grapher/Layouts/JumpLayout.cs
new file mode 100644
index 0000000..cb77963
--- /dev/null
+++ b/grapher/Layouts/JumpLayout.cs
@@ -0,0 +1,24 @@
+using grapher.Models.Serialized;
+
+namespace grapher.Layouts
+{
+ public class JumpLayout : LayoutBase
+ {
+ public JumpLayout()
+ : base()
+ {
+ Name = "Jump";
+ Index = (int)AccelMode.jump;
+ LogarithmicCharts = false;
+
+ AccelLayout = new OptionLayout(false, Acceleration);
+ ScaleLayout = new OptionLayout(false, string.Empty);
+ CapLayout = new OptionLayout(true, string.Empty);
+ 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);
+ }
+ }
+}