SSR's environmentTexture changes the skybox

Hello~
In the case of a scene with skybox and environmentTexture, I have SSR turned on for my scene and set the environmentTexture for SSR, at which point the skybox for the scene are changed. I don’t actually want the skybox to be changed as well, so what should I do here?

Scene before opening the SSR:

Scene after opening the SSR:

Welcome to the community! Tagging @Evgeni_Popov

1 Like

The problem is that the skybox material is highly reflective, so it’s also impacted by the SSR…

What you can do is use a small material plugin to force a reflectivity of 0 for the skybox model. However, for this to work, you’ll need to use the prepass renderer and not the geometry buffer renderer:

1 Like

That’s great! Thank you.