全屏更改鼠标光标位置

时间:2015-08-06 19:48:40

标签: python pygame mouse fullscreen

我正在尝试使用鼠标API以编程方式在PyGame中更改鼠标位置:

PNG

这似乎在窗口模式下工作正常,但在全屏模式下,没有任何反应。我已经尝试强制使光标不可见,然后再显示它,徒劳地希望它能重置这个东西,但没有运气。

编辑为了完全披露,我没有直接使用PyGame。我正在使用OpenSesame,以及#34; Legacy"后端(本质上是PyGame的包装器)。但是,如果需要,我 do 可以访问PyGame原语。

1 个答案:

答案 0 :(得分:0)

https://www.pygame.org/docs/ref/mouse.html#comment_pygame_mouse_get_pos

使用打印进行测试以查看屏幕上是否有0,0个坐标

Python 2.7

#!/usr/bin/python
import pygame
from pygame.locals import *

def main():
   pygame.init()
   pygame.display.set_mode((300,200))
   pygame.display.set_caption('Testing')
   running = True
   while running:
      for event in pygame.event.get():
         if event.type == QUIT:
            running = False
         if event.type == KEYDOWN and event.key == K_ESCAPE:
            running = False
         if event.type == MOUSEBUTTONDOWN:
            #print event.button
           print pygame.mouse.get_pos()
   pygame.display.quit()

if __name__ == '__main__':
   main()

Python 3.4

#!/usr/bin/python
import pygame
from pygame.locals import *

def main():
   pygame.init()
   pygame.display.set_mode((300,200))
   pygame.display.set_caption('Testing')
   running = True
   while running:
      for event in pygame.event.get():
         if event.type == QUIT:
            running = False
         if event.type == KEYDOWN and event.key == K_ESCAPE:
            running = False
         if event.type == MOUSEBUTTONDOWN:
            #print event.button
           print(pygame.mouse.get_pos())
   pygame.display.quit()

if __name__ == '__main__':
   main()