Changes

Jump to navigation Jump to search
308 bytes added ,  02:41, 28 March 2014
Line 105: Line 105:  
If you run the Activity created, it prints Hello World on a black background.
 
If you run the Activity created, it prints Hello World on a black background.
   −
Look at the file game.py, there are a number of simple changes you can make
+
Look at the file game.py, there are a number of simple changes you can make:
 
* 9 BLANCO =(255, 255, 255)  #this sets the red, green and blue values for the white text
 
* 9 BLANCO =(255, 255, 255)  #this sets the red, green and blue values for the white text
 +
*10 NEGRO = (0, 0, 0) #this sets the R G B of the black background
 +
*24 fuente = pygame.font.SysFont(None, 48) #48 is the text size
 +
*44 pantalla.blit(texto, ((x / 2) - (x / 10), (y / 2) - (y / 10))) #the location on the screen
 +
 +
Read the documentation at pygame.org, there are lots of exciting things to try.
    
===Going further===
 
===Going further===
2,486

edits

Navigation menu