Reflect everything in mirror plane except one

Hello!

you can use the renderlist predicate for that:

mirrorMaterial.reflectionTexture.renderListPredicate = (m) => {
             return m !== birdMesh
         };

https://playground.babylonjs.com/#DYDRMG#5

2 Likes