diff options
Diffstat (limited to 'Config.cs')
| -rwxr-xr-x | Config.cs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -#define SIMPLE_KEYBOARD_LAYER
+#define MOUSE_AND_KEYBOARD_LAYER
using SharpPluginLoader.Core.Configuration;
using SharpPluginLoader.Core.IO;
@@ -50,7 +50,7 @@ namespace NewCamera EnableCombo = true;
FreeCameraCombo = "RStick,LT";
DisableComboButton1UnlessButton2Held = false;
-#if SIMPLE_KEYBOARD_LAYER
+#if MOUSE_AND_KEYBOARD_LAYER
EnableMouse = true;
MouseSensitivity = 0.0225f;
EnableKeyboard = true;
@@ -61,7 +61,7 @@ namespace NewCamera public bool EnableCombo { get; set; }
public String FreeCameraCombo { get; set; }
public bool DisableComboButton1UnlessButton2Held { get; set; }
-#if SIMPLE_KEYBOARD_LAYER
+#if MOUSE_AND_KEYBOARD_LAYER
public bool EnableMouse { get; set; }
public float MouseSensitivity { get; set; }
public bool EnableKeyboard { get; set; }
|