So for the first q:
1- I have a blank segment that I want to fill with bitmap and so I want across the help doc and what I saw was bitmapMaterial.
is there a tutorial hoe to use it properly?
my code that i tried is as follow:
var bm:BitmapMaterial = new BitmapMaterial( “path_to_Image”);
bm.smoot = true;
and I understand that I need to put it in plane so:
var p:Plane = new Plane({material: cm, width:“plane width”, height:“plane height”, segmentsW:segmentWidth,segmentsH: segmentHeight});
and finaly to do:
scene.addChild(p);
right??
dosnt work for me.
secound q:
to get the best rezolution or the best view from my movie I need to know the movie width andcalculate the right radius and I wanted to know how to do It.
thanks,