文件名称:桌面小游戏
文件大小:1KB
文件格式:PY
更新时间:2016-08-19 10:27:54
pthon pygame
小游戏,显示桌面鼠标控制,如下 for event in pygame.event.get(): if event.type == QUIT: #接收到退出事件后退出程序 exit() screen.blit(background, (0,0)) #将背景图画上去 x, y = pygame.mouse.get_pos() #获得鼠标位置 x-= mouse_cursor.get_width() / 2 y-= mouse_cursor.get_height() / 2 #计算光标的左上角位置 screen.blit(mouse_cursor, (x, y)) #把光标画上去 pygame.display.update() #刷新一下画面