I have recently downloaded Flash CS6 and wanted to set up a 3d engine with it.
I downloaded Away3d but now I am having troubles setting it up because I a newb.
This here is the code that I want to run - taken from this website - http://www.adobe.com/devnet/flashplayer/articles/creating-games-away3d.html
_view = new View3D();
_view.backgroundColor = 0x666666;
_view.antiAlias = 4;
this.addChild(_view);
this.addEventListener(Event.ENTER_FRAME, onEnterFrame);
I have added the away3d src folder in Adobe Flash CS6. But when I run this code, I see a blank screen.
I think I am forgetting how to import it or may be put it in a class or something. Can somebody explain that procedure? Thanks in advance.