diff options
| author | 2025-11-20 19:15:57 -0500 | |
|---|---|---|
| committer | 2025-11-20 19:15:57 -0500 | |
| commit | 50d6fa92c444071149db1833e91612f26f13ca5a (patch) | |
| tree | 57668d8e317b4daa9e28836e50a17c44e17cc528 /Config.cs | |
| parent | 3107bbb97fbb3cdd6db7d4986488576878591b34 (diff) | |
| download | NewCamera-50d6fa92c444071149db1833e91612f26f13ca5a.tar.gz NewCamera-50d6fa92c444071149db1833e91612f26f13ca5a.tar.bz2 NewCamera-50d6fa92c444071149db1833e91612f26f13ca5a.zip | |
Basic keyboard support
Signed-off-by: Andrew Opalach <andrew@akon.city>
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;
|