summaryrefslogtreecommitdiff
path: root/grapher/Layouts/LUTLayout.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-04-05 20:43:08 -0700
committerJacob Palecki <[email protected]>2021-04-05 20:43:08 -0700
commitcf1fdf2e6cdba8c6ae8493eb744f223b6324594c (patch)
treea38093e20708920dff4798f682c9c003a3694ffc /grapher/Layouts/LUTLayout.cs
parentIt builds (diff)
downloadrawaccel-cf1fdf2e6cdba8c6ae8493eb744f223b6324594c.tar.xz
rawaccel-cf1fdf2e6cdba8c6ae8493eb744f223b6324594c.zip
LUT text layout
Diffstat (limited to 'grapher/Layouts/LUTLayout.cs')
-rw-r--r--grapher/Layouts/LUTLayout.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/grapher/Layouts/LUTLayout.cs b/grapher/Layouts/LUTLayout.cs
index 97bfd60..7449168 100644
--- a/grapher/Layouts/LUTLayout.cs
+++ b/grapher/Layouts/LUTLayout.cs
@@ -8,6 +8,8 @@ namespace grapher.Layouts
{
public class LUTLayout : LayoutBase
{
+ public const string LUTLayoutText = "This mode is for advanced users only. It requires a lut.json file to define the velocity curve. See the guide for specifics.";
+
public LUTLayout()
: base()
{
@@ -22,6 +24,7 @@ namespace grapher.Layouts
LimitLayout = new OptionLayout(false, string.Empty);
ExponentLayout = new OptionLayout(false, Exponent);
MidpointLayout = new OptionLayout(false, string.Empty);
+ LUTTextLayout = new OptionLayout(true, LUTLayoutText);
}
}
}