在Three.js我可以使用:
myObject.geometry.vertices[i].y += 12;
但是在A-Frame中,注释甚至可以在console.log中看到。 我看到了0.2.0和0.3.0之间的所有东西 默认为缓冲几何和顶点被隐藏。 覆盖这是可能的,但现在在0.5.0甚至没有 几何数组列在console.log中。
console.log(myObject.geoetry); //now returns 'undefined'.
console.log(myObject); //returns the markup only, no array!?
目前是否有办法解决个别顶点以改变其位置?
答案 0 :(得分:2)
设置props
。
https://aframe.io/docs/0.5.0/components/geometry.html#base_properties_buffer
然后得到几何:
geometry="buffer: false"