I’ve made outline effects before using materials, but I’ve noticed quite a few issues popping up when the sprite is scaled in some form. I’ve been thinking about using post processing to draw the outline by copying the sprite and filling it with one colour, and then shifting those copies in each direction.
This is fairly similar to the shader process I’ve been using, but I can’t for the life of me figure out how to do this with post processing, and I can’t seem to find any tutorials that would be helpful for this task.
As far as I know(I had the same issue) it is not possible to do it by using atlas(multiple sprites on a sheet). But you can do it by using single sprite image.
I actually am only using a single sprite for each character/object, but my issue is more to do with changing scale, since it shrinks the outline, and it’s locked to the transparent areas of the sprite as it’s a quad, which means that at a small enough scale, the sprite outline will simply fill all of the sprite’s transparent areas.
The only solution I can think of is to create smaller versions of the sprites for each scale, but this would mean I cannot scale the collision shapes without putting them into a separate object. This would cause difficulty with spawning new objects.