Create abstract waves for cool background effects or create a simple randomized wave for a game.
Many options for detailed customization.
Code can be easily modified for ActionScript 2 if you know how to code actionscript 2. Easy to add additional features like Tweening plugins. Have multiple waves at once to create a wave abstract background. Change the thickness and give it a 3D look.
Code Example:
public var wave:Waves = new Waves(); //Set Position wave.y = stage.stageHeight / 2; //Set Colors wave.top_color = 0xFF0000; wave.bottom_color = 0x660000; //Set Properties wave.range = 50; wave.speed = 30; wave.thickness = 100; wave.constant = false; wave.alpha = .03; //Add to stage addChild(wave); //Start Animation wave.start();






