mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-03-06 13:03:52 +01:00
Make SteamControllerConfigs enabled by default
This commit is contained in:
parent
eb37020803
commit
a75d9a35c3
|
|
@ -32,3 +32,4 @@ It does help this project on being supported.
|
|||
- Improve responsiveness of PowerControl (read input more frequently)
|
||||
- Fix selecting `DefaultProfile` on startup
|
||||
- Detect GamePad UI open temporarily for controller layout
|
||||
- Automatically manage steam controller configs when using Steam Input
|
||||
|
|
|
|||
|
|
@ -14,7 +14,8 @@ namespace SteamController.Managers
|
|||
{ "controller_base/desktop_neptune.vdf", Resources.empty_neptune },
|
||||
{ "controller_base/chord_neptune.vdf", Resources.chord_neptune }
|
||||
};
|
||||
static readonly Dictionary<String, byte[]> installedSteamControllerFiles = new Dictionary<string, byte[]> {
|
||||
static readonly Dictionary<String, byte[]> installedSteamControllerFiles = new Dictionary<string, byte[]>
|
||||
{
|
||||
{ "controller_base/templates/controller_neptune_steamcontroller.vdf", Resources.empty_neptune },
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -58,14 +58,9 @@ namespace SteamController
|
|||
Overwrite
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
[UserScopedSetting]
|
||||
[BrowsableAttribute(true)]
|
||||
#else
|
||||
[ApplicationScopedSetting]
|
||||
[BrowsableAttribute(false)]
|
||||
#endif
|
||||
[DefaultSettingValue("DoNotTouch")]
|
||||
[DefaultSettingValue("Overwrite")]
|
||||
[Description("This does replace Steam configuration for controllers to prevent double inputs")]
|
||||
public SteamControllerConfigsMode SteamControllerConfigs
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue