diff options
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -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;
|