Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hi, I don't know which technique you used but - is there any way you could implement smooth (distance based blur) shadows? or even with constant antialiasing? That's one of the biggest limitations of URP 2D lighting so far :/

The technique I used here is

  1. Split all shadow-casting shapes into a list of line segments.
  2. For each line segment, generate a quad mesh.
  3. In a renderpass, render each quad mesh with a shader that displaces the outer edge away from the light source. These are all rendered to a screenspace RenderTexture. As this is done by the GPU, it's very fast.
  4. In a renderPass, multiply the current screen by the light texture. 

In my current version of this. I do a few more things to to get soft shadows (generating triangles at the ends of line segments for the soft penumbra part of the shadow), so soft shadows are definitely possible with this method. 

As all the lights are drawn to a single screenspace texture before rendering, it would be possible to run AA on this, but it might require implementing it from scratch/reverse engineering one of Unity's render passes, which wouldn't be a minor task.