Light Estimation combined with Reflection Probes

I have an issue when combining light estimation with reflection probes in ARFoundation. The thing is that when based on light estimation I turn all my lights ( including ambient ) to zero, all the reflective objects remain untouched by this - meaning they are visible as with lights’ intensity set to 1. I figured the issue is they still receive cubemap from reflection probes taken from fully lit environment.

Is there any way to counteract this somehow ?

For now I overcame this with controlling negative emission on reflective material through global property of a custom shader. Doesn’t feel as a most elegant solution though.

are you using the standard PBR shader? The specularity / metallic channel can be used to offset this

I’m using custom shader but the same thing happens on standard shader and I wanted to leave specularity / metallic properties intact. I’ve found another solution for this issue. Instead of tinkering with emission, I’m now altering intensity of reflection probes base on estimated lighting. Works perfectly.

ah… you can edit this globally with RenderSettings.reflectionIntensity = myval;

I tried that at first but for some reason it didn’t work on reflection probes placed by the ARReflectionProbeManager. So I ended up with keeping track of these reflection probes and changing the intensity directly on them.