diff options
| -rwxr-xr-x[-rw-r--r--] | AsteroidsInfinity/AsteroidsInfinity.py | 7 | ||||
| -rw-r--r-- | README.txt | 15 | 
2 files changed, 19 insertions, 3 deletions
diff --git a/AsteroidsInfinity/AsteroidsInfinity.py b/AsteroidsInfinity/AsteroidsInfinity.py index a702e26..085f3ab 100644..100755 --- a/AsteroidsInfinity/AsteroidsInfinity.py +++ b/AsteroidsInfinity/AsteroidsInfinity.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python2  # The above line makes this executible in unix systems  #    Asteroids Infinity @@ -616,9 +616,10 @@ def main():      small_font = pygame.font.Font("font/Vectorb.ttf", 10)      large_font = pygame.font.Font("font/Vectorb.ttf", 40)      loadsounds() -    screen = pygame.display.set_mode(screensize) +    screen = pygame.display.set_mode(screensize,FULLSCREEN|DOUBLEBUF|HWSURFACE)      screen.fill(backcolor)      pygame.display.flip() +    pygame.mouse.set_visible(False)       fullscreen = 0      pygame.display.set_caption("Asteroids Infinity")      volume = 100 @@ -1048,9 +1049,9 @@ def main():                  beattype = 1          viewpoint[0] += viewpointspeed[0] / fps          viewpoint[1] += viewpointspeed[1] / fps +        screen.fill((backcolor))          Objects.update()          ProtoObjs.update() -        screen.fill((backcolor))          #Objects.draw(screen)          dirtyrects = []          for sprite in ProtoObjs.sprites(): @@ -26,3 +26,18 @@ Path=/home/pi/src/joystick  Terminal=false  Categories=Application;  """ + +add game to lxd menu, add game.desktop file in directory ~/.local/share/applications +""" +[Desktop Entry] +Type=Application +Name=Asteroids +Comment=Asteroids pygame +Icon=/usr/share/pixmaps/minecraft-pi.png +StartupNotify=true +NoDisplay=false +Exec=/home/pi/src/AsteroidsInfinity/AsteroidsInfinity.py +Path=/home/pi/src/AsteroidsInfinity +Terminal=false +Categories=Application;Game; +"""  | 
