“entrada de teclado de pygame” Código de respuesta

Verifique la tecla Pygame presionada

import pygame
events = pygame.event.get()
for event in events:
    if event.type == pygame.KEYDOWN:
        if event.key == pygame.K_LEFT:
            location -= 1
        if event.key == pygame.K_RIGHT:
            location += 1
TheProgrammer

entrada de teclado de pygame

events = pygame.event.get()
for event in events:
    if event.type == pygame.KEYDOWN:
        if event.key == pygame.K_LEFT:
            location -= 1
        if event.key == pygame.K_RIGHT:
            location += 1
Purple Team

Respuestas similares a “entrada de teclado de pygame”

Preguntas similares a “entrada de teclado de pygame”

Más respuestas relacionadas con “entrada de teclado de pygame” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código