Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Wow!! This graphics looks so cool!!
And how did you make this beautiful graphics??!!
Game was hard but these concepts and 1 bit graphics are THE BEST!!!!!

...Really how can we make like these PERFECT 1 BIT Graphics??

Thank you!

I used WASM4, which only supports 4 colors and I only used 2 of those. So basically I have a framebuffer into which I write 0 or 1 for each pixel. The actual color on screen is determined by a palette which is updated each frame.

To create different shades I used dithering (2x2 bayer matrix). There are some good tutorials on how to implement dithering online.