概要
plnkerでa-frameやってみた。
boxをアニメーションで回して、もう一個は、そのローテーションを取得して回す。
サンプルコード
function run() {
let sceneEl = document.querySelector('a-scene');
let box1 = sceneEl.querySelector('#box1');
let box2 = sceneEl.querySelector('#box2');
box2.object3D.rotation.copy(box1.object3D.rotation);
requestAnimationFrame(run);
}
run();
成果物
以上。