function clickCanvas(e){
addS(Math.random()*200+100,stage.mouseX,stage.mouseY,2);
}
function moveCanvas(e){
addS(Math.random()*2+1,stage.mouseX,stage.mouseY,1);
}
function addS(count,x,y,speed){
for(var i=0;i<count;i++){
var s=sprite.clone();
s.x=x;
s.y=y;
s.alpha=Math.random()*0.5+0.5;
s.scaleX=s.scaleY=Math.random()+0.3;
var a=Math.PI*2*Math.random();
var v=(Math.random()-0.5)*30*speed;
s.vX=Math.cos(a)*v;
s.vY=Math.sin(a)*v;
s.vS=(Math.random()-0.5)*0.2;//scale
s.vA=-Math.random()*0.05-0.01;//alpha
stage.addChild(s);
}
}作者: 小柴天雅 时间: 2017-3-5 17:46
收藏了,谢啦