Yeah the dithering is what im talking about, looks very cool!
Viewing post in IMMORTAL JELLYFISH WITH GUNS jam comments
That shader is actually fairly simple, it takes a "number of colors" parameter, then multiplies the color on screen by that number, rounds the result (removes decimals), and then divides the result by the number of colors.
Since in Godot shaders each color (red, green, blue) is represented as a value from 0 to 1, the shader sort of "flattens" the colors in similar range.
The weird "moving/pulsating dither" effect is done by messing with the number of colors in-game.