I made the following change, just to check using a standard material. It doesn’t work if I use MeshStandardMaterial. It only works when using MeshBasicMaterial. Hopefully, this provides a clue.
const materialx = new THREE.MeshBasicMaterial({ color: "white" });
materialx.envMap = envMap;
const obj = new THREE.Mesh(geometry, materialx);
Also, its recommended to update to using envMap.colorSpace = THREE.SRGBColorSpace instead of the older encoding method.
Hi Thanks for the reply!
I supposed to use MeshStandardMaterial for all instances to get reflected from environments and lights together and also want to use metalness, roughness as well.
Do you know why it doesn’t work on MeshStandardMaterial??
At this moment in my CodePen, all the instances are collapsed at [0, 0, 0] but supposed to be placed randomly. this changed vertex shader code is temporal since I thought the reason that env map doens’t work is because of some code in the vertex shader…
For unknown reason, you create MeshStandardMaterial via ShaderMaterial. Doubtful pleasure.
If you want to modify MeshStandardMaterial, modify it with .onBeforeCompile:
I checked a bit later but really thank you so much for this much effort into my problem.
you solved my problem so easily by using .onbeforecompile!
not sure why I tried the weird way.
even if I’m so happy enough for this answer, I’m just curious about why it is not working with MeshStandardMaterial via ShaderMaterial even if I putted all the standard shader chunks.
Maybe some chunks should be included in the vertexshader to use envMap?
The shaders that are shipped with three.js come with a lot of “features” built-in. These “features” are chunks of shader code. Standard has “features” not in basic. But in some cases, basic has features not in standard (like instanced mesh support).
When you create your own shader from scratch, your starting without all these chunks. That’s why, you often see solutions where someone just patches an existing built-in shader to add a chunk, rather than starting from scratch.
i recently came across Home - Featured Shaders - Shaderfrog 2.0. Click on one of the three.js example. It helps to visualize this concept with different blocks of fragment and vertex shaders. Very nice.