Burntz
Chieftain
- Joined
- Feb 15, 2025
- Messages
- 15
It should be possible. You just have to figure out the correct names of the buttons. You could start by trying :does the key configuration handle mouse buttons too? ideally i'd like to switch fromHome
toMouse X1
.
- MOUSE_BUTTON_4 → Commonly the "Back" side button
- MOUSE_BUTTON_5 → Commonly the "Forward" side button
<Database>
<InputActionDefaultGestures>
<!-- Default to HOME for capital -->
<InsertOrIgnore ActionId="camera-center-capital" Index="0" GestureType="KBMouse" GestureData="MOUSE_BUTTON_4"/>
<!-- Default to PAGEUP for forward city-cycling -->
<InsertOrIgnore ActionId="camera-cycle-cities-forward" Index="0" GestureType="KBMouse" GestureData="KEY_PAGEUP"/>
<!-- Default to PAGEDOWN for backward city-cycling -->
<InsertOrIgnore ActionId="camera-cycle-cities-backward" Index="0" GestureType="KBMouse" GestureData="KEY_PAGEDOWN"/>
</InputActionDefaultGestures>
</Database>
Let me know how it worked out!