Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

ah thank you for the tip. I'm a bit new to pygame so sorry for that. And thank you for playing it. 

I also realised that you could just not move the space ship but i was super close to the deadline haha

(1 edit)

You could maybe ask the event forgerts (durk for example) if you can quickly change the code to support this and not need win32api

But nice game overall! 


Here's what I modified

```py

import pygame, sys, json, os, time, random                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

os.environ['SDL_VIDEO_CENTERED'] = '1'                                                                                                                                

pygame.mixer.pre_init(44100,-16, 2, 512)                                                                                                                              

pygame.init()                                                                                                                                                         

                                                                                                                                                                      

screen_info = pygame.display.Info()                                                                                                                                   

screen_width, screen_height = pygame.display.get_desktop_sizes()[0]

```