CLICK TO CHANGE EFFECTLAYER PROPERTIES

Implementation Code for Fire Effect:

bfx = new BitmapEffectLayer(500, 500, true);
var fire:BitmapFireEffect = new BitmapFireEffect();
fire.fadeRate = 0.1;
fire.flameSpread = 1;
fire.flameHeight = 1;
fire.distortion = 0.1;
fire.distortionScale = 2;
bfx.addEffect(fire);
pv3dContainer.scene.addEffectLayer(bfx);

CLICK HERE to see blog post on Papervision 2.0 Effects

 

c