When working with Three.js, I could easily manipulate vertices using this code:
myObject.geometry.vertices[i].y += 12;
However, in A-Frame, I am not able to see anything in the console.log. It seems that between versions 0.2.0 and 0.3.0, everything switched to buffer geometry and vertices became hidden. It was possible to override this behavior, but now in version 0.5.0, even the geometry array is not visible in the console.log.
console.log(myObject.geoetry); //now returns 'undefined'.
console.log(myObject); //returns the markup only, no array!?
Is there a current solution to accessing individual vertices in order to change their positions?