Working on Xbox mapping. /JL #19

Merged
Lerking merged 1 commits from 0.1.10 into main 2025-04-25 18:16:32 +02:00
3 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ from .xbox_series_x_controller import XboxSeriesXController
from .generic_controller import GenericController
from .logitech_dual_action_controller import LogitechDualActionController
__version__ = "0.1.9"
__version__ = "0.1.10"
CONTROLLERS = {
"DualSense Wireless Controller": DualSenseController,

View File

@@ -24,8 +24,8 @@ class XboxSeriesXController(ControlsBase):
"left button": self.buttons[6],
"right button": self.buttons[7],
"X button": self.buttons[3],
"Y button": self.buttons[4],
"A button": self.buttons[0],
"Y button": 4,
"A button": 0,
"B button": self.buttons[1],
"left stick button": self.buttons[13],
"right stick button": self.buttons[14],

View File

@@ -3,7 +3,7 @@ if __name__ == "__main__":
setup(
name='pygameControls',
version='0.1.9',
version='0.1.10',
packages=find_packages(),
install_requires=[],
author='Jan Lerking',