Added invert mouse option.

This commit is contained in:
dexyfex
2018-01-02 11:07:24 +11:00
Unverified
parent c9fb099db7
commit 4cbf85bd03
7 changed files with 62 additions and 3 deletions
+12
View File
@@ -686,5 +686,17 @@ namespace CodeWalker.Properties {
this["XInputMoveSpeed"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool MouseInvert {
get {
return ((bool)(this["MouseInvert"]));
}
set {
this["MouseInvert"] = value;
}
}
}
}
+3
View File
@@ -180,5 +180,8 @@
<Setting Name="XInputMoveSpeed" Type="System.Single" Scope="User">
<Value Profile="(Default)">15</Value>
</Setting>
<Setting Name="MouseInvert" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
</Settings>
</SettingsFile>