summaryrefslogtreecommitdiff
path: root/grapher/Layouts/LUTLayout.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-04-25 23:05:44 -0700
committerJacob Palecki <[email protected]>2021-04-25 23:05:44 -0700
commit0cf5ce3762926fa556418572e9661d79cbbaa240 (patch)
treef5dd9c5c77acf0f4a8d910636660bed93f8fb16b /grapher/Layouts/LUTLayout.cs
parentFixed layout issues for LUT (diff)
downloadrawaccel-0cf5ce3762926fa556418572e9661d79cbbaa240.tar.xz
rawaccel-0cf5ce3762926fa556418572e9661d79cbbaa240.zip
Start of LUT points editing
Diffstat (limited to 'grapher/Layouts/LUTLayout.cs')
-rw-r--r--grapher/Layouts/LUTLayout.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/grapher/Layouts/LUTLayout.cs b/grapher/Layouts/LUTLayout.cs
index 1ca5915..37c336e 100644
--- a/grapher/Layouts/LUTLayout.cs
+++ b/grapher/Layouts/LUTLayout.cs
@@ -8,7 +8,7 @@ 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 const string LUTLayoutText = "This mode is for advanced users only. We recommend setting points in the settings file with a script.";
/// <summary>
/// String small enough to fit in active value label
@@ -30,7 +30,8 @@ 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);
+ LutTextLayout = new OptionLayout(true, LUTLayoutText);
+ LutPanelLayout = new OptionLayout(true, string.Empty);
}
public override string ActiveName => LUTActiveName;