For pixel lighting in my 2d game, I have a secondary camera render to a RenderTexture, which I then combine with the level camera’s RenderTexture using a shader to produce the lighting effect.
This works fine when all the lights are the same color, but when I try to use colors, the sprites render the normal way:
I need them to blend together instead, kind of like this:
How would I do this?