Introduce X360 Haptic Profile (in DEBUG)

This commit is contained in:
Kamil Trzciński 2022-12-03 17:49:23 +01:00
parent a92a0661df
commit 8ffa5d967f
4 changed files with 82 additions and 9 deletions

View file

@ -22,7 +22,10 @@ namespace SteamController
new Profiles.SteamProfile() { Name = "Steam", Visible = false },
new Profiles.SteamWithShorcutsProfile() { Name = "Steam with Shortcuts", Visible = false },
new Profiles.X360Profile() { Name = "X360" },
new Profiles.X360RumbleProfile() { Name = "X360 with Rumble" }
new Profiles.X360RumbleProfile() { Name = "X360 with Rumble" },
#if DEBUG
new Profiles.X360HapticProfile() { Name = "X360 with Haptic" }
#endif
},
Managers = {
new Managers.ProcessManager(),
@ -305,6 +308,9 @@ namespace SteamController
Desktop = ProfilesSettings.BackPanelSettings.Desktop,
X360 = ProfilesSettings.BackPanelSettings.X360,
X360Rumble = ProfilesSettings.X360RumbleSettings.Default,
#if DEBUG
X360Haptic = ProfilesSettings.X360HapticSettings.Default,
#endif
Application = Settings.Default
}
};