Search results

  1. P

    Cx_Freeze compiled pygame File doesn't work

    The following error happens if i try to compile my python (using python 3.2) file: Traceback(most recent call last): File "c:\python32\lib\site-packages\cx_Freeze\initscripts\Console3.py", line 27, in <module>   exec(code, m.__dict__)  File "Abertura.py", line 208, in <module>  File...
  2. P

    Pygame won't draw any shapes!

    #START-UP imports pygame and random import pygame import random from pygame.locals import *   pygame.init()   #PRESETS  size = (700,500) #default window size   done = False #exit is 'false'   clock = pygame.time.Clock() #sets up a in-game 'clock'   black = (  0,  0,  0) green = (...
  3. P

    [Pygame] Richard's Jones TMX library‏

    Hello! I'm a noob at python and pygame, also forgive for possible english mistakes, i'm actually from Brasil.  I'm creating a plataform game using tilemaps and loading it with Richard's Jones tmx library, and i have come across a "bug":  When i'm moving my character around, he goes faster to the...
Back
Top