I’d like some general daylight kind-of lightning for my scene.
However, I cannot get the directionalLight to enlighten more then just a small part.
sun = new DirectionalLight(0,-1,1);
var mat:ColorMaterial = new ColorMaterial(0xFFFFFF);
mat.lightPicker = new StaticLightPicker([sun]);
mat.specular = 1;
plane = new Plane(mat, 1024,1024, 100,100,true);
view.scene.addChild(plane);
Result:
What am I missing here?