In my game, I have a dynamically generated field. And I want to create a shadow in runtime.
It is very easy with WebGL renderer - I just create render texture, draw field there, and then apply tint = 0.
But tint is not supported in canvas renderer.
Is there any other way to create a shadow like this? I’ve tried to use setPixel on underlying canvas texture but it doesn’t have any effect.