I'm trying to use object.rotation.x++;
, but not to rotate from the object's center, rather a specific point - e.g the Origin 0,0,0
. So if let's say an Object
is at position(5,10,15), object.rotation would rotate AROUND the 0,0,0 point, rather than from within.
I tried using
object.pivot.x = 0;
object.pivot.y = 0;
object.pivot.z = 0;
And
object.transform(0,0,0);
And
object.translate(0,0,0);
With no avail
Objects are with the .gltf
format