Hey there
I’m trying to add a background to my scene view on a Flash Builder Mobile project, but when add the background view is displaced to the right and a little to the bottom (Attached an image)
Here is my code
view = new View3D();
view.width = 640;
view.height = 480;
view.camera.position = new Vector3D(0, 0, 0);
var bmd:BitmapData = new FloorDiffuse().bitmapData;
view.background = new BitmapTexture(bmd);
Thanks for your help