Search Unity

Question Realtime Global Illumination from Emissive materials not appearing

Discussion in 'Global Illumination' started by expcalibur, Sep 4, 2021.

  1. expcalibur

    expcalibur

    Joined:
    Nov 3, 2020
    Posts:
    25
    Hi! I was trying to light up a scene and well, it didn't. The odd thing is that in the game view the game is almost dark but on the indirect light view of the scene, the whole scene is illumineted. Does anyone know what the problem could be? LightIndirectView.png LightShadedView.png
     
  2. kristijonas_unity

    kristijonas_unity

    Unity Technologies

    Joined:
    Feb 8, 2018
    Posts:
    1,080
    Hello! I can think of the following culprits:
    • You have aggressive auto exposure settings. Try disabling auto exposure, and see if that helps.
    • Materials with a high smoothness and metallic value will not contribute to GI. Make sure that your scene contains diffuse surfaces from which light rays can bounce and scatter. Alternatively, you could write a custom meta pass shader: https://docs.unity3d.com/Manual/MetaPass.html
     
  3. expcalibur

    expcalibur

    Joined:
    Nov 3, 2020
    Posts:
    25
    Thanks a lot! I will try your recomendations and if it works (or not) I post it here.