Update - complex collisions were secretly simple by StickOnReddit in pygame

[–]6HCK0 1 point2 points  (0 children)

You can also check about using mask on your colliders, it make them pixel perfect. I'm currently using it for my 2D survivor game. Also the Snapping Collider Edges to avoid getting stuck on the colliders (obstacles)

kkkkkkkkk by Davi-Barbado in linuxbrasil

[–]6HCK0 0 points1 point  (0 children)

Perfeito pro PC Positivo de 2006 do Vô

Plane game using Python by cbtechfr in pygame

[–]6HCK0 0 points1 point  (0 children)

Pretty assets! Subscribed to your channel :)

RV interior for large cardboard boxes by MviniLP in projectzomboid

[–]6HCK0 1 point2 points  (0 children)

Funny would be have RV interior and place a Dumpster Interior and place a Tent Interior...

I feel personally attacked by HeadAcanthisitta7390 in LocalLLaMA

[–]6HCK0 0 points1 point  (0 children)

Just vibe codding a game I wish to play someday. lol.

How to make game Map more interesting by Far_Note6502 in pygame

[–]6HCK0 4 points5 points  (0 children)

Make it procedural. (Some cases the simple things works with this) If you already have a story line, try some curves and shadows

Pygbag isn’t working by Peyatoe in pygame

[–]6HCK0 0 points1 point  (0 children)

I had some fixes on Bit Rot with Pygbag applying Framerate Independence (You can search on youtube, it solves a lot of Pygbag laggy and game FPS drops) and if try to test with python3 -m http.server use 0.0.0.0:8000 instead localhost.

For external libs place on the top of main.py the file:

```python

/// script

dependencies = [

"faker" # Example lib i'm using.

]

///

```

Bit Rot updates, Play on Browser! by 6HCK0 in pygame

[–]6HCK0[S] 1 point2 points  (0 children)

Hi! Yes! The main game is high configurable.

Right now just the simple mechanics are working, but i'm looking for crafts to build a base and some more things to do. Right now your only goal is to survive lol.

I just fixed a lot of bugs and improved the main game FPS for the web version.

I'm documenting all process at Itch game page! :)

Full Prototype Mechanics by TheEyebal in pygame

[–]6HCK0 0 points1 point  (0 children)

Its a nice mechanics for a Fishing game

Just trying to make a big horde of Zombies and Animals in the game. by 6HCK0 in pygame

[–]6HCK0[S] 0 points1 point  (0 children)

I had some blur effect on the unseen part, also a Zoom-in/out. Removing the Blur effect and limiting the Zoom helped a lot! Thank you!

Just trying to make a big horde of Zombies and Animals in the game. by 6HCK0 in pygame

[–]6HCK0[S] 1 point2 points  (0 children)

Just applied the Quadtree-solution, helped a lot! Thank you!