how i can add text on a plane and put the plane in a 3d scene?
I have the following
[Embed(source="../lib/QuickScan.png")] private var QuickScan:Class;
private function createScene():void {
quickscan = new QuickScan();
picPlaneMat = new MovieMaterial(quickscan);
plane3 = new Plane(picPlaneMat, 326, 70);
plane3.x = 160;
plane3.y = 0;
plane3.z = 0;
etc
scene.addChild(plane3);
it renders (using FlashDevelop) but i can’t see the plane?