Ey! I’ve just downloaded the last version of away3d 4 and i’ve seen that view.backgroundImage has disappeared. Instead it’s background and it requires a Texture2dBase.
I want to show the capture from the webcam so I’ve tried doing:
bmpData= new BitmapData(512, 256);
bmpData.draw(video);
bmpTex = new BitmapTexture(bmpData);
_view.background = bmpTex;
But nothing appears on screen. What am I missing? Is this method no longer usable?