hi, we’re in making a site with away3D, and got this bug (view image):
It not show up until you stop your mouse movement at least 500ms, the line is obviously the polygon edge of the floor as you can see here:
Here’s the link to current test site:
http://testsynergetic.dev.greend0t.com/#/entertainment/djs-en
Code:
var djShadowFileMaterial : BitmapFileMaterial = new BitmapFileMaterial(mcDJListData.shadow);
mcDJListItem = new Plane( { material:djFileMaterial,
x:mcDJListData.orgX,
y:mcDJListData.orgY + rootY,
z:mcDJListData.orgZ,
height:120*mcDJListData.scale,
width:60*mcDJListData.scale,
rotationZ: 0,
rotationX: 90,
name: mcDJListData.name });
mcDJListItem.ownCanvas = true;
mcDJListItem.pushfront = true;
scene.addChild(mcDJListItem);
init DJ
I can provide anything else needed to sorted out this bug.
Thanks.