In my app i need to reflect some objects around target object. Because this objects identical, and for performance reason also, i use the instancedMesh object.
For perform reflection I scaled the matrix of a certain instance along some axis by -1,but as a result its normals were flipped.
Is it possible to access the normal attribute of this instance or flip the normals in another way?
Extract the normal matrix from the instance matrix, and then apply it to a copy of the geometry’s vertex normals:
const normal = geometry.attributes.normal.clone();
const normalMatrix = new Matrix3().getNormalMatrix( instanceMatrix );
normal.applyNormalMatrix( normalMatrix );
As found in BufferGeometry#applyMatrix4
.
2 Likes
Thanks for the answer.
Unfortunately, this doesn’t work for me. Modified normals apply to all instances, not specific ones.
Unfortunately, this doesn’t work for me. Modified normals apply to all instances, not specific ones.
Perhaps I don’t understand what you are looking for in that case. All instances share the same geometry, including vertex normals. Only the instance matrix (position, rotation, scale) differs between instances.
I wanted to change the normals of one specific instance, not all. But I already realized that this is not possible
1 Like