Just a thought.
Would it be possible to do a colorizer effect that can do different colors to individual tiles?
Something like set color of this x, this y to that color.
Develop games in your browser. Powerful, performant & highly capable.
The easiest way to do this is to create a new layer containing the color areas, then apply a modified version of the effect to function as a "mask" shader (it uses the layer texture to modify the background). It's quite easy to do.
Just for curiosity, what's your use case?
Variation for tilemaps.
Change this grass tile yellow, that house blue, etc.
Only problem with masks is they bleed to layers below.
Something that changes the hue, not one that makes it all the same color.
Instead of x,y more like a tile at x,y.
There's a way to avoid the bleed. Put your tilemap on a layer, place another tilemap over it with the color masks and apply the effect to it. Then enable "Force Own Texture" to the layer.
Here's an example.
Thanks, I'll do some experimentation with that.
With the way tilemaps work you could have endless tiles of different colors instead of using an effect. Effects always end up being too process-intensive anyway so even if you could have different tiles with different colors, when your game was complete you'd have a lot of trouble optimizing it.