Recently, I upgraded from r67 to r69 in ThreeJS and now facing issues with referencing the positions of objects to a single vector.
Prior to the update, this code snippet worked fine:
var vector = new THREE.Vector3(50, 50, 50);
_Mesh1.position = vector;
_Mesh2.position = vector;
This code made it so that moving one mesh would also move the other due to sharing the same position vector.
However, after updating to r69, the position vector remains at (0, 0, 0). This means I have to manually set the X, Y, and Z coordinates for each mesh individually when I move one.
Is there something I missed or a specific fix I need to implement here?