I am trying to get Away and Starling up and running by following this:
http://away3d.com/tutorials/Away3D_and_Starling_Interoperation
It worked somewhat fine but I got this weird error in Mouse3DHandler
[Fault] exception, information=ReferenceError: Error #1056: Cannot create property undefined on __AS3__.vec.Vector.<away3d.core.pick::PickingCollisionVO>.
It is coming from away3d.core.managers.Mouse3DManager line 88.
_collidingObject = _collidingViewObjects[_view3Ds[view]] = _mousePicker.getViewCollision(view.mouseX, view.mouseY, view);
I tried commenting that out and then everything seems to be working… except the mouse, of course.
Any Ideas?
Edit:
I was cutting some corners and _view3D.shareContext = true; was being set AFTER it is added to stage. :/