Skip to content Skip to sidebar Skip to footer
Showing posts with the label Pygame

Flags And Depth In Coding (pygame)

So I am starting to learn pygame and in this line: pygame.display.set_mode((640,300), 0, 32) I'… Read more Flags And Depth In Coding (pygame)

Use Pygame Mouse While Hidden

Is there a way to use the mouse while, pygame.mouse.set_visible(False) is activated. Currently mou… Read more Use Pygame Mouse While Hidden

How To Embed A Tkinter Window Into A Pygame Game Gui?

I have coded the Tkinter window and my pygame game separately. However, when I tried to link the tw… Read more How To Embed A Tkinter Window Into A Pygame Game Gui?

Build Pygame With Full Image Support?

I'm trying to create a graphical application and using pygame as my library. However, in order … Read more Build Pygame With Full Image Support?

Duplicating A Sprite

I'm having trouble with getting new sprites to be added. I'm looking for something along th… Read more Duplicating A Sprite

Check Collision Between A Image And A Line

I check collision: offset = (x0 - x1, y0 - y1) result = player1.mask.overlap(player2, offset) Its … Read more Check Collision Between A Image And A Line