three.js r89
transitionContext.containerView
var A = new THREE.Object3D();
var B = new THREE.Object3D();
scene.add(A);
A.add(B);
A.position.set(0, 0, -2);
var bPos = B.getWorldPosition();
仍为bPos
。为什么?我认为它应该是Vector3 {x: 0, y: 0, z: 0}
(B随A移动)。
证明: