I've got some morph targets working:
https://jsfiddle.net/3wtwzuh3/2/ (Use the slider control to see the morph)
However, I'd like to be able to access the new positions of the vertices after the morph. If you notice in the linked example, I am displaying the y coordinate of the first vertex of the cube and it is not updating!
// This Y vertex doesn't seem to update!
elInfo.innerHTML = geometry.vertices[0].y;
Is it possible to get the new positions? I've tried setting all sorts of flags and have had no luck.
Thanks!
Please note this example is just for the purposes of the question, it's a little more complex in my actual project (where I need the vertex data!).