-
pygame.locals
- pygame constants
This module contains various constants used by pygame. Its contents are automatically placed in the pygame module namespace. However, an application can use
pygame.locals
to include only the pygame constants with afrom pygame.locals import *
.Detailed descriptions of the various constants can be found throughout the pygame documentation. Here are the locations of some of them.
The
pygame.display
pygame module to control the display window and screen module contains flags likeFULLSCREEN
used bypygame.display.set_mode()
Initialize a window or screen for display.The
pygame.event
pygame module for interacting with events and queues module contains the various event types.The
pygame.key
pygame module to work with the keyboard module lists the keyboard constants and modifiers (K_
* andMOD_
*) relating to thekey
andmod
attributes of theKEYDOWN
andKEYUP
events.The
pygame.time
pygame module for monitoring time module definesTIMER_RESOLUTION
.
Edit on GitHub