The point light in the center has a range of 10, and is located at the origin. On the left are two front-facing quads with scale (4,4,1) at Z=3 using the Default-Diffuse material. The inner one is at X=-2.4, and the outer one is at X=3.
Mirrored on the right side are two sprites, using a material with Sprites/Diffuse. The outer one should be lit identically to the outer quad, but instead it only receives ambient light.
Changing the pixel light count in QualitySettings to zero does not cause the outer sprite to be vertex-lit (though the other 3 objects switch to per-vertex lighting). Changing the sprite scale to (1,1,1) fixes the issue, so it’s just a problem with scaled sprites.
I’m seeing this happen in the editor too. I noticed that if you change the sprite’s PixelsToUnits, then you can make it larger and still get lighting to work. But that doesn’t solve non-uniform scaling or variable scaling for spritesheets.
Any news regarding this problem? Every time I change the scale of a game object it stops receiving light from the light sources, regardless of its type, spotlight or point.
I’ve been struggling with this problem for a bit. Luckily I found the problem rather quickly. Make sure to scale the sprite with Vector3 and set the z-value to 1. My problem was that I was scaling with Vector2 and that sets the z-value to 0.