|
Nice Star Effect
Generates All star Randomly in the entire stage or in a specified Area you can simply Add value for _x and _y
this["star"+i]._x = Math.floor(Math.random() * 800);
this["star"+i]._y = Math.floor(Math.random() * 150);
and No. Of star Defiend here
var total:Number = 100;
It's Very easy to add in any project. |