Moving Light Probes

Hi,

I am building a game for Mobile, Now Ive used light probes that are static, but should/could light probes be used for dynamic lights aswell?

I have one single dynamic light in my entire game…

Thank you for your feedback!

“should/could light probes be used for dynamic lights as well?”

Yes. You use light probes for three reasons:

1- They store static baked light to be used at run-time on moving gameObjects At run-time.

2- they represent sampling points for dynamic real-time global illumination (GI, or bounced light) to affect the lighting on moving objects.

3- They provide the lighting information for static scenery when that scenery is using Unity’s LOD system.

source