summaryrefslogtreecommitdiff
path: root/Config.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Config.cs')
-rwxr-xr-xConfig.cs11
1 files changed, 9 insertions, 2 deletions
diff --git a/Config.cs b/Config.cs
index 6cc4283..a5d42d5 100755
--- a/Config.cs
+++ b/Config.cs
@@ -1,4 +1,6 @@
-using SharpPluginLoader.Core.Configuration;
+#define SIMPLE_KEYBOARD_LAYER
+
+using SharpPluginLoader.Core.Configuration;
using SharpPluginLoader.Core.IO;
namespace MHWNewCamera
@@ -55,7 +57,7 @@ namespace MHWNewCamera
}
public String Name => "MHWNewCamera";
- public String Version => "3.0";
+ public String Version => "3.1";
private static Dictionary<string, Button> buttonMap = new Dictionary<string, Button>
{
@@ -94,6 +96,11 @@ namespace MHWNewCamera
public bool DisableMod { get; set; } = false;
+#if SIMPLE_KEYBOARD_LAYER
+ public bool EnableKeyboard { get; set; } = true;
+ public int KeyboardLookSensitivity { get; set; } = 19750;
+#endif
+
public bool EnableCombo { get; set; } = true;
public String FreeCameraCombo { get; set; } = "RStick,LT";
public bool DisableComboButton1UnlessButton2Held { get; set; } = false;