Hi, I'm trying out 3.6.0 at the moment and am attempting to add a
colour shaded plane, with an outline, to my scene.
When viewing the plane from the front, the outline draws fine, but
when moving the camera to the back of the object, the outline
disappears, though the plane is still shaded (thanks to
bothsides:true).
var plane1:Plane = new Plane({material:0x0000FF, bothsides:true,
yUp:false, width:100, height:100});
var material:WireColorMaterial = new WireColorMaterial();
material.wireColor = 0xFF0000;
material.thickness = 5;
plane1.outline = material;
Is this a bug in 3.6.0, or am I doing something wrong here?
thanks
Richard