Hi,
I’ve done some test with VideoMaterial and transparents FLV and the result is not very great.
var videoMat:VideoMaterial = new VideoMaterial("lib/myVideo.f4v", 512, true, true);
videoMat.smooth = true;
videoMat.alphaBlending = true;
var p:Plane = new Plane(videoMat, 2000, 2000, 1, 1, true );
p.rotationX = -90;
p.rotationY = -180;
_scene.addChild( p);
so the video is working and i’ve some transparency, but the video seems to be very pixelated near the transparent regions.
If i test with a flv without transparency, the video rendering is good, no pixelate effect.
So, i was wondering if anyone have a trick for this issue ?