Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Amazing job. The idea, Execution, and Presentation were fantastic. i love the artstyle (I'd love to know how you made the effects) I wasn't able to get past the second level. It was because I kept sliding off my clones. maybe up the friction a bit. It also might be my platformer skills :P Great job!

(1 edit)

Thank you so much!

The anaglyph/abberation effect was made using a simple shader that adds an offset to the red/blue channel of the sprite (and rendering the sprite to a seperate viewport so the shader won't affect things near the sprite).

This is basically the whole fragment shader:

COLOR.ga = texture(SCREEN_TEXTURE, SCREEN_UV).ga;
COLOR.r = texture(SCREEN_TEXTURE, SCREEN_UV + offset_r).r;
COLOR.b = texture(SCREEN_TEXTURE, SCREEN_UV - offset_b).b;

The background and spawn/start screen effect was made using Godot's CPU particles.