“Pygame.events” Kod odpowiedzi

Jak na wydarzenia Pring w Pygame

import pygame
pygame.init()

screen = pygame.display.set_mode((500,300))
thing = 0
while thing < 100000000:
    thing += 1

event = pygame.event.get()
print (event)
pygame.quit()
Hilarious Hamster

Pygame.events

keys=pygame.key.get_pressed()
if keys[K_LEFT]:
    location-=1
    if location==-1:
        location=0
if keys[K_RIGHT]:
    location+=1
    if location==5:
        location=4
Energetic Eland

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu