“Cómo detectar el clic del mouse en Pygame” Código de respuesta

Pygame detectar clic

while ... # your main loop
  # get all events
  ev = pygame.event.get()

  # proceed events
  for event in ev:

    # handle MOUSEBUTTONUP
    if event.type == pygame.MOUSEBUTTONUP:
      pos = pygame.mouse.get_pos()

      # get a list of all sprites that are under the mouse cursor
      clicked_sprites = [s for s in sprites if s.rect.collidepoint(pos)]
      # do something with the clicked sprites...
Breakable Baboon

Cómo detectar el clic del mouse en Pygame

while running: # Gameloop
  for event in pygame.event.get(): # Checks all events
    if event.type == pygame.MOUSEBUTTONDOWN: # If the current event is the mouse button down event
      pos = pygame.mouse.get_pos() # Stores the mouse position
The Angriest Crusader

Respuestas similares a “Cómo detectar el clic del mouse en Pygame”

Preguntas similares a “Cómo detectar el clic del mouse en Pygame”

Más respuestas relacionadas con “Cómo detectar el clic del mouse en Pygame” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código