Is there anyone who can shed more light on this issue? My View3D doesn't scale when the window is resized but it scales differently depending on stage size when the View3D is created.
stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
var viewMask:RectangleClipping = new
RectangleClipping({minX:-interfaceSwf.width/2,
minY:-interfaceSwf.height/2, maxX:interfaceSwf.width/2,
maxY:interfaceSwf.height/2});
backView.clipping = viewMask;
Is there a known fix for this?
