TransWikia.com

Como fazer o personagem se movimentar para esquerda e direita? (PyGame)

Stack Overflow em Português Asked by Dirso on November 16, 2020

Estou fazendo um jogo bem simples utilizando o PyGame, estou aprendendo agora e queria saber como posso fazer meu personagem se movimentar para esquerda e direita? Segue o código:

def window():
    pygame.init()
    tela = pygame.display.set_mode((800, 600))
    pygame.display.set_caption('My game')
    clock = pygame.time.Clock()
    velocity_clock = 27

    background = pygame.image.load('.img/background-800x600.png')
    yellow_monster = pygame.image.load('.img/monstro_amarelo.png')
    purple_monster = pygame.image.load('.img/monstro_roxo.png')
    green_monster = pygame.image.load('.img/monstro_verde.png')
    red_monster = pygame.image.load('.img/monstro_vermelho.png')
    personagem_principal = pygame.image.load('.img/personagem_principal.png')
    personagem_primcipal_colisao = pygame.image.load('.img/personagem_principal_colisao.png')

    tela.blit(background, (0, 0))
    tela.blit(personagem_principal, (350, 490))

    pygame.display.flip()
    game_over = False

    while not game_over:
        for event in pygame.event.get():
            if event.type == QUIT:
                pygame.quit()
                exit()
        
             
    clock.tick(velocity_clock)
    pygame.display.update()

window()

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP