The reason is that you have too small background image and you have sett the game display to 1000 x 1000 pixels. To fixs this you can either change your backgroud image to another picture that is 1000 x 1000 pixels, or just change
This line of code:
screen=pygame.display.set_mode((1000,1000),0,32) to
Example: If you have a pic that is 640 x 480 then change the code to this:
ur game looks great
Mrgreatestfreakout 4 months ago
The reason is that you have too small background image and you have sett the game display to 1000 x 1000 pixels. To fixs this you can either change your backgroud image to another picture that is 1000 x 1000 pixels, or just change
This line of code:
screen=pygame.display.set_mode((1000,1000),0,32) to
Example: If you have a pic that is 640 x 480 then change the code to this:
screen=pygame.display.set_mode((640,480),0,32)
AntimatterDisabled 7 months ago
@AntimatterDisabled thanks
14koder 5 months ago