I want to move an object from one group (or world/scene) to another group, but keep it\'s global transformation intact. Basically, I don\'t want to see the object change.
EDIT: You can use the built-in method Object3D.attach():
Object3D.attach()
// add object as a child of parent, while maintaining the object's world transform parent.attach( object );
three.js r.109