Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Chain Renderer with Burst can not use Point Light
#3
(22-08-2024, 08:52 AM)josemendez Wrote: Hi,

This is a bug in Unity. Mesh instances in the built-in render pipeline don't render any extra lighting passes when using the forward rendering path: they only perform the main forward pass (ForwardBase), and hence are only lit by the main directional light. No ForwardAdd passes are performed.

The solution is to switch to the deferred rendering path, or to another pipeline (both URP and HDRP behave correctly in this case).

See this related thread: http://obi.virtualmethodstudio.com/forum...-4312.html
Also see: https://discussions.unity.com/t/how-to-u...ing/717600

Notably, when using Graphics.DrawMeshInstancedIndirect additional passes do seem to work. Unfortunately we can't use the indirect version for our purposes.

kind regards,
I see.
I will try to use GPU mode instead.
Thank you for replying.
Reply


Messages In This Thread
RE: Chain Renderer with Burst can not use Point Light - by asimofu_ok - 22-08-2024, 12:09 PM