So cool. Took me back to my childhood instantly. You nailed it
Show HN: Tiny PS1-like Renderer in 500 lines
11–20 of 47 posts
Re: Show HN: Tiny PS1-like Renderer in 500 lines
#12For lot of us, our childhood was defined by this console. N64 as well but just something about the PS1 graphic that really speaks to me. Anybody else feel the same?
Re: Show HN: Tiny PS1-like Renderer in 500 lines
#13heh, I wrote an N64 one not too long ago with the exact same style: https://github.com/glouw/gel
You might notice that your project is already included in the Readme under credits.
Re: Show HN: Tiny PS1-like Renderer in 500 lines
#14Re: Show HN: Tiny PS1-like Renderer in 500 lines
#15would love to see this run inside a browser. how do you create ps1 texture and lo-poly models like this? I so badly want to create a PS1 style game in the browser. For lot of us, our childhood was defined by this console. N64 as well but just something about the PS1 graphic that really speaks to me. Anybody else feel the same?
Re: Show HN: Tiny PS1-like Renderer in 500 lines
#16Have PS1 triangular graphics made a retro resurgence yet? Because I'm so down for that.
https://old.reddit.com/r/ps1graphics/
There's also some people on YouTube doing PS1 and N64 style graphics.
Re: Show HN: Tiny PS1-like Renderer in 500 lines
#17Earlier quoted context omitted.
You might notice that your project is already included in the Readme under credits.
I did not notice. Neat. I appreciate the PS1 more. Remembering way back, N64 carts were 10 dollars or so more than PS1 discs, and as a result I had a stockpile of PS1 games. The texture popping of the PS1 I could never make sense of but it became an aesthetic of the era. Nice work OP, and thankyou for the credit
The Truth About PS1 Graphics
https://www.youtube.com/watch?v=ESXAxtdEkzY
Why PlayStation 1 Graphics Warped and Wobbled so much
Re: Show HN: Tiny PS1-like Renderer in 500 lines
#18Re: Show HN: Tiny PS1-like Renderer in 500 lines
#19Have PS1 triangular graphics made a retro resurgence yet? Because I'm so down for that.
https://www.nme.com/features/gaming-features/the-resurgence-...
Re: Show HN: Tiny PS1-like Renderer in 500 lines
#20Earlier quoted context omitted.
You might notice that your project is already included in the Readme under credits.
I did not notice. Neat. I appreciate the PS1 more. Remembering way back, N64 carts were 10 dollars or so more than PS1 discs, and as a result I had a stockpile of PS1 games. The texture popping of the PS1 I could never make sense of but it became an aesthetic of the era. Nice work OP, and thankyou for the credit
The N64 had two things which made things smoother. It had sub-pixel precision for geometry after projection, and it had perspective-correct interpolation. This meant that moving objects looked smooth and didn’t “pop”. Games on the PS1 addressed the interpolation problem by subdividing, but you could sometimes see geometry suddenly move when you got closer and saw more subdivisions.
The N64 also had texture interpolation (kind of like bilinear) and antialiasing, but those don’t make as big an impact.
The N64 got all these things right, more or less, but had problems with memory bandwidth and small texture memory.