while repeat:
        for event in pygame.event.get():
                if event.type == (QUIT):
                    pygame.quit()
                if (event.type == KEYDOWN):
                    if (event.key == K_ESCAPE):
                        pygame.quit()
                    if (event.key == K_UP):
                        Refresh()

when I make an event with keys I use that model above. I have no idea how to do 
multiple keys at a time. I would like to make it so if i hold down and left the 
character moves down in left. Does anyone have any idea how to do that?


      
____________________________________________________________________________________
Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to