Hello, as I mention before, I`m just beginner with 3D library, but it is pain in the ass, if something goes wrong. So, the question is:
I followed tutorial in flashmagazine.com, but something is missing. I created class that contains everything for simple sphere creation, and everything works fine, except, that sphere on my stage looks too small to recognize it. Any explanations?
package {
import away3d.containers.View3D;
import away3d.primitives.Sphere;
import flash.display.Sprite;
public class Basic01 extends Sprite {
public function Basic01() {
var view:View3D = new View3D({x:500,y:250});
addChild(view);
var sphere:Sphere = new Sphere();
view.scene.addChild(sphere);
view.render();
}
}
}