Có cách nào để nhảy và thêm trọng lực không ạ ? viết lại giúp em!
import pygame
pygame.init()
cuaso = pygame.display.set_mode((800,600))
pygame.display.set_caption("game boring 1")
dongho = pygame.time.Clock()
x = 100
y = 120
rong = 15
cao = 15
vantoc = 3
running = True
while running:
dongho.tick(60) #60fps
cuaso.fill('azure 3')
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
phim = pygame.key.get_pressed()
if phim [pygame.K_LEFT] and x >= vantoc:
x-= vantoc
if phim [pygame.K_RIGHT] and x <= 800-rong:
x+= vantoc
if phim [pygame.K_UP] and y >= vantoc:
y-= vantoc
if phim [pygame.K_DOWN] and y <= 600-cao:
y+= vantoc
pygame.draw.rect(cuaso,'gray0',(x,y,rong,cao))
pygame.display.update()
pygame.quit()