summaryrefslogtreecommitdiff
path: root/grapher/Layouts/LUTLayout.cs
diff options
context:
space:
mode:
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);
}
}
}