check key pressed pygame
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
check key pressed pygame
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
pygame key pressed once
# Outside loop pressed = False # Inside loop if event.type == pygame.KEYDOWN: if event.key == pygame.K_a and not pressed: #K_a can be replaced by any key # Do something pressed = True elif event.key != pygame.K_a: pressed = False
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us