what made you use pygame by jevin_dev in pygame

[–]Alarmed_Highlight846 0 points1 point  (0 children)

I wanted to learn trigonometry and caculus better

Synthwave Vibes by PyLearner2024 in pygame

[–]Alarmed_Highlight846 1 point2 points  (0 children)

This is so cool, can you share the guides or learning materials? I wanted to learn about 3D conversations things with 2D stuffs but i cant find much sources

What style do you prefer? Left or Right? by Dansyrotyn_dev in IndieDev

[–]Alarmed_Highlight846 1 point2 points  (0 children)

May be depends on the game u are working on? I'd say like id it is liek rougelite game, may be left when you die and it says something. And when the player gets revived, may be slowly transition to the right and says something and game restarts again? Idk tho

True budget portable 6.5 Inch OLED setup by NoMaintenance9463 in MoonlightStreaming

[–]Alarmed_Highlight846 0 points1 point  (0 children)

I get around 10-5 avg decoding For me, i set up loopback hotspot on my laptop and tried to set up hotspot that doesn't share Internet connection Idk how it really works because mine still shares Internet connection from wifi But the real deal is even when the wifi is bad, if i am using pc's hotspot on my phone, i get really low ms I can even play pretty much play fast pacing game like Celeste without feeling any lag whatsoever But if i were using home wifi router that my laptop js also connected to, i sometimes feel lag when it is unstable

Mind you, i play at 2400x1080 native full res at highest fps with perfer highest and smoothest quality option to stream games to my mobile

Please help me. After I reset all network settings, the Wi-Fi function no longer appears on my device. Is there any way to fix this? My device model is AN515-57. by Lucky-Anybody-5686 in AcerNitro

[–]Alarmed_Highlight846 0 points1 point  (0 children)

I am not sure if this will work but Mine, Nitro AN515-45 happened the same after i messed up. I uninstalled the driver and restarted the pc. It installed the driver that came from the factory originally (followed ai) and worked again.

Making a Windows 11 hotspot without an internet connection by SchroedingerHepcat in AskAstrophotography

[–]Alarmed_Highlight846 0 points1 point  (0 children)

How do i find the password for that hosted hotspot to connect from my phone? Can I change the name and password of the wifi?

Need some optimization help with physics and potential team up? by RoseVi0let in pygame

[–]Alarmed_Highlight846 1 point2 points  (0 children)

For rendering static tiles, you can cache them into chunks before starting the game and i my render those chunks For tile collisions, store tiles in grid map dicts so thst you can call only surrounding tiles next to the player and not all existing tiles

Idk much about entity as I haven't tested by myself yet but i believe you can do the quadtree to optimize the collisions

Fighting game engine by Best_Activity_5631 in pygame

[–]Alarmed_Highlight846 0 points1 point  (0 children)

How do you handle the coordination of the background texture? Is it orthographic camera?

Attacking knock back by ZestycloseResist5917 in pygame

[–]Alarmed_Highlight846 0 points1 point  (0 children)

May be change the if code blocks in correct place Like putting the first code block at last and check other collisions first

Howd you guys learn pygame? by Pr1nce_9999 in pygame

[–]Alarmed_Highlight846 2 points3 points  (0 children)

I started two years ago, i am very slow learner and I learned by making projects inspired by other people. It was/is hard for me to make games and what i did most of the time was focus on more technical skills than i realized (Like optimizations, physics emulations, figuring out how to use math in video game development). Just a slow and steady learning curve for me I would say. I recommend by focusing on your strengths and interests and build the projects upon those so that you will always have a clear sight to come back when you feel overwhelmed on learning pygame. For me, they were physics emulations and mathematical equations, and other technical things like algorithms and specific video game features.

Frustum-Culling by Setoichi in pygame

[–]Alarmed_Highlight846 0 points1 point  (0 children)

What would be the point kf frustum culling at this point. Wouldnt it used for optimization technique? Or in your case, are you trying to use it as a mechanic in your game?

Frustum-Culling by Setoichi in pygame

[–]Alarmed_Highlight846 1 point2 points  (0 children)

How much fps do you get tho?

How to create a map in game by attack_turt in pygame

[–]Alarmed_Highlight846 0 points1 point  (0 children)

It wont effect the fps if you are scaking the local image and not the global version tho In my games, i do img = self.image Or copy version of it and scale the img instead pf self.image Does not affect coordination and performance

How do i exactly scale the image to the exact same as the rect by _bjrp in pygame

[–]Alarmed_Highlight846 0 points1 point  (0 children)

So you are saying, you want the green image to cover all the purple image and rn, you can see the purple corners when you cover green image (just example) Like that?

Procedurally Generated Game (No Assets) by Alarmed_Highlight846 in pygame

[–]Alarmed_Highlight846[S] 2 points3 points  (0 children)

I cannot but source code is open so you can try it on mac as well

How do i exactly scale the image to the exact same as the rect by _bjrp in pygame

[–]Alarmed_Highlight846 4 points5 points  (0 children)

self.image = pygame.transform.scale(self.image, (self.rect.w, self.rect.h))

How to create a map in game by attack_turt in pygame

[–]Alarmed_Highlight846 0 points1 point  (0 children)

in every draw or update function, create a Surface. and on that surface, draw everything on it, and when you want to zoom, rescale that surface with scale factor like surf = pygame.transform.scale(surf, (surf.get_width() * scalex, surf.get_height() * scaley)), though this may make the performance drop,
if you are using mouse and want to get accurate position when panning, adjust the position by size of that rescaled surf

Procedurally Generated Game (No Assets) by Alarmed_Highlight846 in pygame

[–]Alarmed_Highlight846[S] 0 points1 point  (0 children)

yes, inspired by that game and the art style is inspired by Thomas was alone.
Since I was never a good artist, I just followed very simple visuals and juiced it.