我有一个奇怪的问题pygame,我没有连接到我的笔记本电脑的操纵杆,但返回1它甚至检测到轴输入。连接到我的电脑的设备是:鼠标、键盘和 wacom 影拓。pygame.joystick.get_count()未连接其他 USB 设备。编辑:我做了以下测试脚本import pygamepygame.init()pygame.joystick.init()print("joystick count:",pygame.joystick.get_count())gJoystick = pygame.joystick.Joystick(0)gJoystick.init()print(gJoystick.get_init())fGetEvent = Truewhile fGetEvent: for event in pygame.event.get(): if event.type == pygame.JOYBUTTONDOWN: print("joystick button pressed") fGetEvent = FalsegJoystick.init()print(gJoystick.get_numaxes())当我按下影拓数位板上的按钮时,它会注册为操纵杆按钮按下。我是否必须断开平板电脑的连接才能正常工作?
添加回答
举报
0/150
提交
取消