I have a group of THREE.Mesh objects. My goal is to use something like
group.applyMatrix( new THREE.Matrix4().makeRotationX( Math.PI / 2) );
. Then, I would like to make the result as the group default matrix, so that I can use matrixUpdate() in my animation.
In ThreeJS docs, we can find: "Calling updateMatrix will clobber the manual changes made to the matrix, recalculating the matrix from position, scale, and so on."
Is there a way to make the manual changes I want and then set the result as if it was the default state of group?