From 31e52dbf0004e7dfc5a34a38a5b206839c85ba86 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 16 Jan 2024 21:00:51 +0100 Subject: [PATCH] Ally Mappings --- app/Ally/AllyControl.cs | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/app/Ally/AllyControl.cs b/app/Ally/AllyControl.cs index de631f39..fe4e43f2 100644 --- a/app/Ally/AllyControl.cs +++ b/app/Ally/AllyControl.cs @@ -302,6 +302,14 @@ namespace GHelper.Ally Key1 = AppConfig.Get("bind_dpl"); Key2 = AppConfig.Get("bind_dpr"); break; + case BindingZone.StickClick: + Key1 = AppConfig.Get("bind_stl"); + Key2 = AppConfig.Get("bind_str"); + break; + case BindingZone.Bumper: + Key1 = AppConfig.Get("bind_bul"); + Key2 = AppConfig.Get("bind_bur"); + break; case BindingZone.AB: Key1 = AppConfig.Get("bind_a"); Key2 = AppConfig.Get("bind_b"); @@ -310,10 +318,18 @@ namespace GHelper.Ally Key1 = AppConfig.Get("bind_x"); Key2 = AppConfig.Get("bind_y"); break; - default: + case BindingZone.ViewMenu: + Key1 = AppConfig.Get("bind_menu"); + Key2 = AppConfig.Get("bind_select"); + break; + case BindingZone.M1M2: Key1 = AppConfig.Get("bind_m2"); Key2 = AppConfig.Get("bind_m1"); break; + default: + Key1 = AppConfig.Get("bind_trl"); + Key2 = AppConfig.Get("bind_trr"); + break; } if (Key1 == -1 && Key2 == -1) return;