Контроллер aframe vive Uncaught TypeError: hand.getAttribute не является функцией

Я пытался получить и обновить положение контроллера vive в кадре для проекта.

я пробовал это с помощью d3.js

var hand = d3.select('.con_left');
var pos = hand.getAttribute('position');
console.log(pos);

но показывает ошибку

Uncaught TypeError: hand.getAttribute is not a function

person PreetamHerald    schedule 20.01.2019    source источник


Ответы (1)


Самая новая версия метода атрибута d3-selection просто attr

var hand = d3.select('.con_left');
var pos = hand.attr('position');

Вот пример:

setInterval(() => {
  const box = d3.select('a-box')
  const sphere = d3.select('a-sphere')
  box.attr('position', `${-Math.random()/5} ${Math.random()/5} -3`)
  sphere.attr('position', `${Math.random()} ${1+Math.random()/5} -5`)
}, 50);
<script src="https://aframe.io/releases/0.5.0/aframe.min.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<a-scene>
  <a-sphere position="0 1.25 -5" radius="1.25" color="#EF2D5E"></a-sphere>
  <a-box position="-1 0.5 -3" rotation="0 45 0" width="1" height="1" depth="1" color="#4CC3D9"></a-box>
  <a-cylinder position="1 0.75 -3" radius="0.5" height="1.5" color="#FFC65D"></a-cylinder>
  <a-plane position="0 0 -4" rotation="-90 0 0" width="4" height="4" color="#7BC8A4"></a-plane>
  <a-sky color="#ECECEC"></a-sky>
</a-scene>

person calmar    schedule 20.01.2019