“pygame получить позицию мыши” Ответ

pygame получить позицию мыши

x,y = pygame.mouse.get_pos()
#get the mouse cursor position
#get_pos() -> (x, y)
#Returns the X and Y position of the mouse cursor.
#The position is relative to the top-left corner of the display.
#The cursor position can be located outside of the display window,
#but is always constrained to the screen.
8Dion8

Pygame Mouse Pos

 pygame.mouse.get_pos()
    get the mouse cursor position
    get_pos() -> (x, y)

    Returns the x and y position of the mouse cursor. 
    The position is relative to the top-left corner of the display. 
    The cursor position can be located outside of the display window,
    but is always constrained to the screen.
Bad Bat

Ответы похожие на “pygame получить позицию мыши”

Вопросы похожие на “pygame получить позицию мыши”

Больше похожих ответов на “pygame получить позицию мыши” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования