Closed subsoap closed 1 year ago
Should also add an upscaling shader, one of the pixel art to "vector" graphics shaders common with emulators. http://filthypants.blogspot.com/search/label/xBR
I think maybe the shader stuff, crt and scanline filters are better suited for a separate repo. You started something similar recently? I've many tims thought of trying to find a way to modularize the render script and make it really easy for people to create full screen effects using shaders.
As for setting WIDTH and HEIGHT individually: Good idea and a simple change. I'll keep the default values to 64x64.
Yes, it could be an a stand alone example (I could make some too, if they don't exist at some point I will). It's something people who want to make pixel art games will eventually ask for always.
I made a rendertarget helper which makes using full screen render targets for post processing and other full screen effects really easy. Will release it sometime soon. It somewhat makes full screen effects easy although you still have to manually include and setup unitquads and materials, require the module, and then set whatever you want rendered to the rendertarget listed there instead of being rendered normally. At least it's all easier now than it was before!
Mind if I make a pixel art template as a fork of this project with post processing enabled or do you want to do it?
Please go ahead! I haven't had time to do it yet.
Closing in favor of https://github.com/britzl/lowrezjam-template/issues/6
Only real changes needed I think would be to include a SIZE_HEIGHT and SIZE_WIDTH in the render script.
Another thing could add would be to produce non-square pixels. Here is an example
Which produces thicc pixels useful in NES projects although may not be best way to achieve the effect that NES emulators can produce to give proper NES look, other game systems use non-square pixels too
Could maybe merge this with Orthographic or make it an extension of that somehow.