Hi forum members,
it’s one month that I start to work with both Away3D & Away3D Lite but I don’t know if I wrong understand the documentation or if there is a bug in the both latest version of the two engine.
Why the Engine apply Smoothing on MOVIEMATERIAL only with SWF file?
If I try to load FLV, MOV (h263), MP4 etc. the movie material that is currently applied to a plane that changes its size is displayed so horrible (this not seems to apply to the same FLV if I embed it in SWF file).
I’ve checked the material properties during runtime and Smoothing is always set to TRUE.
Any help would be appreciated.
Thanks in advance.
PART OF CODE:
var planeMaterial:MovieMaterial;
var video:Video = new Video();
video.smoothing = true;
var connection:NetConnection = new NetConnection();
connection.connect(null);
var stream_ns:NetStream = new NetStream( connection );
stream_ns.addEventListener(NetStatusEvent.NET_STATUS, loop);
var client = new Object();
stream_ns.client = client;
client.onMetaData = onMetaData;
video.attachNetStream( stream_ns );
stream_ns.play( sPath );
var movieSprite:Sprite = new Sprite();
movieSprite.addChild( video );
planeMaterial = new MovieMaterial( movieSprite, null, true, false );
planeMaterial.smooth = true;
createPlane( planeMaterial, nWidth, nHeight, true );