Update pygameControls/generic_controller.py

This commit is contained in:
2025-05-05 09:10:00 +02:00
parent 148205d27a
commit f1a6f6e21d

View File

@@ -6,8 +6,8 @@ class GenericController(ControlsBase):
self.device = joy
self.instance_id: int = self.device.get_instance_id()
self.name = self.device.get_name()
self.connection_type = connection_type
self.guid = self.device.get_guid()
self.connection_type = connection_type
self.numaxis: int = self.device.get_numaxes()
self.axis: list = [self.device.get_axis(a) for a in range(self.numaxis)]
self.numhats: int = self.device.get_numhats()