First off a big thank you to the creators of Away3d and all the people dev-ing. Flash has gotten really exciting again.
I am currently having some trouble animating a NURBS Mesh using refreshNURBS().
The NURBS Mesh is created correctly and I can manipulate it on instantiation. but the following ENTER_FRAME handler has no effect.
private function onEnterFrameTest (event : Event) : void {
nurbsMesh.controlNet[6].z++;
nurbsMesh.refreshNURBS();
_view.render();
};
Am I missing anything important ? It’s hard to find any conversation / examples around the interet.
Thanks for any help