dark_wolk 0 Denunciar post Postado Julho 3, 2008 ai galera to cumecando com pygame e fiz esse codigozim so pra carregar uma imagem, e mostrar as teclas precissionadas import pygame from pygame.locals import * import sys import os pygame.init() window = pygame.display.set_mode((400,400)) pygame.display.set_caption("Labirinto ! by Lincoln") screen = pygame.display.get_surface() labirinto = os.path.join("/home/lincoln/Imagens","labirinto.gif") labirinto_surface = pygame.image.load(labirinto) screen.blit(labirinto_surface, (0,0)) pygame.display.flip() def input(events): for event in events: if event.type == QUIT: sys.exit(0) else: print event while True: input(pygame.event.get())e ta dando um erroalguem sabe pq... flws Compartilhar este post Link para o post Compartilhar em outros sites
_Isis_ 202 Denunciar post Postado Julho 3, 2008 Que erro é? Compartilhar este post Link para o post Compartilhar em outros sites
dark_wolk 0 Denunciar post Postado Julho 3, 2008 Que erro é? esse aq oh: Traceback (most recent call last): File "jogobeta.py", line 2, in <module> from pygame.locals import * ImportError: No module named locals como pode se eu tenhu o pygame aq Compartilhar este post Link para o post Compartilhar em outros sites
_Isis_ 202 Denunciar post Postado Julho 3, 2008 Mas o pygame tem o modulo locals? Compartilhar este post Link para o post Compartilhar em outros sites
dark_wolk 0 Denunciar post Postado Julho 3, 2008 Mas o pygame tem o modulo locals? pra falar a verdade o negoco ta um doido... eu executei funcionou e depois executei novamente e apareceu a merma coisa [O.o] meu ubuntu deve tah loco... alguem sabe de algo Compartilhar este post Link para o post Compartilhar em outros sites
dark_wolk 0 Denunciar post Postado Julho 4, 2008 olha q estranho... tem sim o modulo locals...encontrei o aquivo na pasta do pygame... como pode ele me dizer q o modulo naum existe... aff... sei lah alguem sabe como resolve isso... flws http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.gif Compartilhar este post Link para o post Compartilhar em outros sites