I'm using Away3D v4 in a Flex Mobile project. Is it possible to add a video texture to a plane?
It seem to work fine running on the AIR simulator in Flash Builder, but doesn't render at all on Android.
Here's the code I'm using to create the texture:
var videoTexture:VideoTexture = new VideoTexture("MyVideo.flv");
var material = new TextureMaterial(videoTexture);
var mesh = new Mesh(new PlaneGeometry(500, 500), material);