diff options
| author | Jacob Palecki <[email protected]> | 2021-04-05 20:43:08 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-04-05 20:43:08 -0700 |
| commit | cf1fdf2e6cdba8c6ae8493eb744f223b6324594c (patch) | |
| tree | a38093e20708920dff4798f682c9c003a3694ffc /grapher/Layouts/LUTLayout.cs | |
| parent | It builds (diff) | |
| download | rawaccel-cf1fdf2e6cdba8c6ae8493eb744f223b6324594c.tar.xz rawaccel-cf1fdf2e6cdba8c6ae8493eb744f223b6324594c.zip | |
LUT text layout
Diffstat (limited to 'grapher/Layouts/LUTLayout.cs')
| -rw-r--r-- | grapher/Layouts/LUTLayout.cs | 3 |
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); } } } |