Then I added a plane in front of the sphere. The plane material is setup to be a two sided translucent with the Lighting Mode set as Surface Translucency Volume, as the official documentation says to do. Here is the material applied to the plane, all parameter values are set to 0 using an instance:
I’m testing almost the same in a project level I have, and it’s showing the landscape (with default grid material) as black in the reflection. But it’s not only the part of the sphere behind the translucent plane. I used the exact same material graphs you posted. It could be the material of the surrounding sphere requires a setting or two to be changed, or something added to it or the small sphere’s reflective material to get it working.
Of course! I was being stupid. I forgot to **invert the normals of the surrounding sphere! **No collision was happening against it because the normals were pointing out, not in. I guess the fact that the part of the small sphere not covered by the plane is rendered correctly because this is actually a hybrid renderer. It will add black to the blue, resulting in blue while the part covered by the plane is pure ray tracing.
Here is the result after inverting the surrounding sphere normals:
Such funny errors happen even the best ^.^ Well, for further experiments, you can try to make your surrounding material simply a two sided material, or, if you don´t want to always inverse the normals, Epic already have created a sphere with inverted normals for this purpose. Just activate, that you can see engine or developer stuff, and then search for a mesh/sphere named “Sphere_inversenormals”. It´s somewhere in the engine content folder
Now to the real problem…
What you see in your pathtracer is NOT the pathtracer ignoring your sphere, or refractions, it seems more like… that the pathtracer handles your plane as a perfect mirror. Your image shows evidence, that you actually see the rear of your floor as a reflection rather than seeing through the plane, as you would expect from a transparent material.
So, after experimenting a little bit with the Specular value of the refractive material, which is the index of refraction, I noticed that the path tracer treats a value of 0 as perfect reflection, changing it to 0.01 solves it.
One sphere is reflective and the other is translucent. Results with the path tracer: The refractive sphere gets reflected almost correctly in the reflection, the path tracer doesn’t seen to take into account the base colour of the material
And here are the results with the ray tracer: The base colour of the material is respected but the reflection doesn’t seem to take into account the index of refraction of the translucent material.