I have a small question regarding AA quality with subsurface scattering enabled. AFAIU SSS uses prepass rendering pipeline, which for somewhat reason has it’s own MSAA algorithm and being enabled it turns off the default rendering pipeline post-process MSAA automatically.
The thing is this prepass MSAA looks far worse than normal post-process MSAA, making the meshes edges look harder. So any ideas on how to improve the quality or force the post-process MSAA usage?
You should be able to turn MSAA on on RenderTarget e.g. post process by increasing the .samples property of the pipeline/post pro. @CraigFeldspar could confirm on where it is available in the pipeline.
Yes, I’m using scene.prePassRenderer.samples = 8;
and that’s exactly where I’m getting bad AA quality. The edges look far worse than with the default rendering pipeline post-process AA.