Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Interesting, did you use the sdl opengl wrapper or native opengl? Did you make your own renderer? Did you find it hard to implement?

(1 edit)

I use the native OpenGL API on all platforms.

I did make my own renderer. A renderer for PewPew is not too hard: culling is simple, no lights or shadows. Hardest part was probably drawing 3D lines :-)

What is a little bit annoying is that any new effect, like Depth of Field or Lens Flare take several hours to implement, whereas in a premade engine my understanding is that it’s one click away and the quality can be better than what I achieve.

Wow, I see. This looks amazing by the way, I thought it had lights. How long did it take for you to make your renderer? Do you know if it is feasible for a team of two to make a 2d renderer with ray tracing lights?

(1 edit)

Making the renderer is an iterative process. I started with just drawing lines, then progressively added all the different effects (bloom, chromatic aberration, etc…). You can get a renderer in a week of full time work, but then there are endless improvements you can make. Even today the renderer of PewPew Live could be improved in a lot of ways.

It’s totally doable to do a 2D renderer with ray tracing lights. 2D simplifies many many things!