Hi,
i cannot add the lensflare to the scene, so i tried adding it to the stage, but did not see anything. What am i doing wrong here?
var lfSource:Plane = new Plane();
lfSource.x = 100;
lfSource.y = 100;
_scene.addChild(lfSource);
var spr:Sprite = new Sprite();
spr.graphics.beginFill(0xff0000, .4);
spr.graphics.drawCircle(0, 0, 10);
_lensFlare = new LensFlare(lfSource, _camera);
_lensFlare.addFlareAsset(spr);
_lensFlare.addFlareAsset(spr);
_lensFlare.addFlareAsset(spr);
global.stage.addChild(_lensFlare);