※現在、「wonderfl build flash online」求人コンテンツ制作に関してのアンケートを実施中です!みなさまのお力添えを頂いて、続々とアンケート結果が集まっていますが、まだまだ募集しております。ご協力のほど、どうぞよろしくお願いいたします!
wonderfl運営事務局
→アンケートページ(※ログインしてからお答えいただけるようになっています。)
浮かんで消える forked from: 浮かんで消える
- // forked from HaraMakoto's 浮かんで消える
- // forked from cellfusion's Particle Sample
- // write as3 code here..
- // 大量のパーティクルを発生させてみた
- // マウスを押してる間でてくるよ
- package
- {
- import flash.display.Sprite;
- import flash.display.StageQuality;
- import flash.events.Event;
- import flash.events.MouseEvent;
- [SWF(width="465", height="465", backgroundColor="0x000000", frameRate="30")]
- public class ParticleTest extends Sprite
- {
- private var _particles:Array = [];
- private var _emitter:Emitter;
- // 1フレーム間に発生させる Particle 数
- private const PARTICLE_NUM:uint = 10;
- public function ParticleTest()
- {
- stage.quality = StageQuality.LOW;
- setup();
- }
- private function setup():void
- {
- _emitter = new Emitter();
- addChild(_emitter);
- //パーティクル作成
- for (var i:uint = 0; i < 10000; i++) {
- _particles.push(new Particle());
- }
- addEventListener(Event.ENTER_FRAME, draw);
- stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDown);
- }
- private function draw(event:Event):void
- {
- _emitter.update();
- for each (var p:Particle in _particles) {
- //まだ死んでない
- if (!p.destroy) {
- //400こえたら
- if (p.y >= 10) {
- p.vx *= -0.9;
- p.vy *= -0.9;
- }
- p.update();
- }
- }
- }
- private function mouseDown(event:MouseEvent):void
- {
- addEventListener(Event.ENTER_FRAME, createParticle);
- stage.addEventListener(MouseEvent.MOUSE_UP, mouseUp);
- }
- private function mouseUp(event:MouseEvent):void
- {
- stage.removeEventListener(MouseEvent.MOUSE_UP, mouseUp);
- removeEventListener(Event.ENTER_FRAME, createParticle);
- }
- private function createParticle(event:Event):void
- {
- var count:uint = 0;
- for each (var p:Particle in _particles) {
- // 停止している Particle を探す
- if (p.destroy) {
- p.x = _emitter.x;
- p.y = _emitter.y;
- p.init();
- addChild(p);
- count++;
- }
- if (count > PARTICLE_NUM) break;
- }
- }
- }
- }
- import flash.display.Sprite;
- import flash.display.GradientType;
- class Emitter extends Sprite
- {
- public var vx:Number = 0;
- public var vy:Number = 0;
- public function Emitter()
- {
- }
- public function update():void
- {
- var dx:Number = root.mouseX - x;
- var dy:Number = root.mouseY - y;
- var d:Number = Math.sqrt(dx*dx+dy*dy) * 0.2;
- var rad:Number = Math.atan2(dy, dx);
- vx += Math.cos(rad)*d;
- vy += Math.sin(rad)*d;
- vx *= 0.7;
- vy *= 0.7;
- x += vx;
- y += vy;
- }
- }
- import flash.filters.BlurFilter;
- import flash.geom.Matrix;
- import flash.display.SpreadMethod;
- class Particle extends Sprite
- {
- public var vx:Number;
- public var vy:Number;
- public var life:Number;
- public var size:Number;
- private var _count:uint;
- private var _destroy:Boolean;
- /**
- * ブラウン運動関連
- */
- private var friction:Number = 0.99;
- private var vectx:Number = -0.4;
- private var vecty:Number = -0.8;
- private var xrandom:Number = 0.8;
- private var yrandom:Number = 0.3;
- public function Particle()
- {
- size = Math.random() * 40;
- var red:uint = Math.floor(Math.random()*100+156);
- var blue:uint = Math.floor(Math.random()*100+100);
- var green:uint = Math.floor(Math.random()*156);
- var color:Number = (red << 16) | (green << 8) | (blue);
- var fillType:String = GradientType.RADIAL;
- var colors:Array = [color , 0x000000];
- var alphas:Array = [100, 100];
- var ratios:Array = [0x00, 0xFF];
- var mat:Matrix = new Matrix();
- mat.createGradientBox(size * 2, size * 2, 0, -size, -size);
- var spreadMethod:String = SpreadMethod.PAD;
- graphics.clear();
- graphics.beginGradientFill(fillType, colors, alphas, ratios, mat, spreadMethod);
- graphics.drawCircle(0, 0, size);
- graphics.endFill();
- // 大量のオブジェクトを重ねるとおかしくなる
- blendMode = "add";
- _destroy = true;
- }
- public function init():void
- {
- vx = Math.random() * 20 - 10;
- vy = Math.random() * 20 - 10;
- life = Math.random() * 20 + 10;
- _count = 0;
- _destroy = false;
- }
- public function update():void
- {
- vx += Math.random()*xrandom + vectx;
- vy += Math.random()*yrandom + vecty;
- vx *= friction;
- vy *= friction;
- x += vx;
- y += vy;
- _count++;
- // 死亡フラグ
- if (life < _count/2) {
- _destroy = true;
- parent.removeChild(this);
- }
- }
- public function get destroy():Boolean
- {
- return _destroy;
- }
- }
浮かんで消える forked from: 浮かんで消える
- // forked from HaraMakoto's 浮かんで消える
- // forked from cellfusion's Particle Sample
- // write as3 code here..
- // 大量のパーティクルを発生させてみた
- // マウスを押してる間でてくるよ
- package
- {
- import flash.display.Sprite;
- import flash.display.StageQuality;
- import flash.events.Event;
- import flash.events.MouseEvent;
- //import net.hires.debug.Stats;
- [SWF(width="465", height="465", backgroundColor="0x000000", frameRate="30")]
- public class ParticleTest extends Sprite
- {
- private var _particles:Array = [];
- private var _emitter:Emitter;
- // 1フレーム間に発生させる Particle 数
- private const PARTICLE_NUM:uint = 10;
- public function ParticleTest()
- {
- stage.quality = StageQuality.LOW;
- setup();
- //addChild(new Stats());
- }
- private function setup():void
- {
- _emitter = new Emitter();
- addChild(_emitter);
- for (var i:uint = 0; i < 1000; i++) {
- _particles.push(new Particle());
- }
- addEventListener(Event.ENTER_FRAME, draw);
- stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDown);
- }
- private function draw(event:Event):void
- {
- _emitter.update();
- for each (var p:Particle in _particles) {
- if (!p.destroy) {
- //p.vy += 0.99;
- if (p.y >= 400) {
- p.vy *= -0.9;
- p.vx *= -0.9
- }
- p.update();
- }
- }
- }
- private function mouseDown(event:MouseEvent):void
- {
- addEventListener(Event.ENTER_FRAME, createParticle);
- stage.addEventListener(MouseEvent.MOUSE_UP, mouseUp);
- }
- private function mouseUp(event:MouseEvent):void
- {
- stage.removeEventListener(MouseEvent.MOUSE_UP, mouseUp);
- removeEventListener(Event.ENTER_FRAME, createParticle);
- }
- private function createParticle(event:Event):void
- {
- var count:uint = 0;
- for each (var p:Particle in _particles) {
- // 停止している Particle を探す
- if (p.destroy) {
- p.x = _emitter.x;
- p.y = _emitter.y;
- p.init();
- addChild(p);
- count++;
- }
- if (count > PARTICLE_NUM) break;
- }
- }
- }
- }
- import flash.display.Sprite;
- import flash.display.GradientType;
- class Emitter extends Sprite
- {
- public var vx:Number = 0;
- public var vy:Number = 0;
- public function Emitter()
- {
- //graphics.beginFill(0x808080);
- //graphics.drawCircle(0, 0, 10);
- //graphics.endFill();
- //blendMode = "add";
- }
- public function update():void
- {
- var dx:Number = root.mouseX - x;
- var dy:Number = root.mouseY - y;
- var d:Number = Math.sqrt(dx*dx+dy*dy) * 0.2;
- var rad:Number = Math.atan2(dy, dx);
- vx += Math.cos(rad)*d;
- vy += Math.sin(rad)*d;
- vx *= 0.7;
- vy *= 0.7;
- x += vx;
- y += vy;
- }
- }
- import flash.filters.BlurFilter;
- import flash.geom.Matrix;
- import flash.display.SpreadMethod;
- class Particle extends Sprite
- {
- public var vx:Number;
- public var vy:Number;
- public var life:Number;
- public var size:Number;
- private var _count:uint;
- private var _destroy:Boolean;
- /**
- * ブラウン運動関連
- */
- private var friction:Number = 0.99;
- private var vectx:Number = -0.4;
- private var vecty:Number = -0.8;
- private var xrandom:Number = 0.8;
- private var yrandom:Number = 0.3;
- public function Particle()
- {
- size = Math.random() * 30;
- var red:uint = Math.floor(Math.random()*100+156);
- var blue:uint = Math.floor(Math.random()*100+100);
- var green:uint = Math.floor(Math.random()*156);
- var color:Number = (red << 16) | (green << 8) | (blue);
- var fillType:String = GradientType.RADIAL;
- var colors:Array = [color , 0x000000];
- var alphas:Array = [100, 100];
- var ratios:Array = [0x00, 0xFF];
- var mat:Matrix = new Matrix();
- mat.createGradientBox(size * 2, size * 2, 0, -size, -size);
- var spreadMethod:String = SpreadMethod.PAD;
- graphics.clear();
- graphics.beginGradientFill(fillType, colors, alphas, ratios, mat, spreadMethod);
- graphics.drawCircle(0, 0, size);
- graphics.endFill();
- //filters = [new BlurFilter(8,8,2)];
- // 大量のオブジェクトを重ねるとおかしくなる
- blendMode = "add";
- _destroy = true;
- }
- public function init():void
- {
- vx = Math.random() * 20 - 10;
- vy = Math.random() * 20 - 10;
- life = Math.random() * 20 + 10;
- _count = 0;
- _destroy = false;
- }
- public function update():void
- {
- vx += Math.random()*xrandom + vectx;
- vy += Math.random()*yrandom + vecty;
- //nx += vx;
- //ny += vy;
- vx *= friction;
- vy *= friction;
- x += vx;
- y += vy;
- _count++;
- // 死亡フラグ
- if (life < _count) {
- _destroy = true;
- parent.removeChild(this);
- }
- }
- public function get destroy():Boolean
- {
- return _destroy;
- }
- }
浮かんで消える forked from: 浮かんで消える
- // forked from HaraMakoto's 浮かんで消える
- // forked from cellfusion's Particle Sample
- // write as3 code here..
- // 大量のパーティクルを発生させてみた
- // マウスを押してる間でてくるよ
- package
- {
- import flash.display.Sprite;
- import flash.display.StageQuality;
- import flash.events.Event;
- import flash.events.MouseEvent;
- //import net.hires.debug.Stats;
- [SWF(width="465", height="465", backgroundColor="0x000000", frameRate="30")]
- public class ParticleTest extends Sprite
- {
- private var _particles:Array = [];
- private var _emitter:Emitter;
- // 1フレーム間に発生させる Particle 数
- private const PARTICLE_NUM:uint = 10;
- public function ParticleTest()
- {
- stage.quality = StageQuality.LOW;
- setup();
- //addChild(new Stats());
- }
- private function setup():void
- {
- _emitter = new Emitter();
- addChild(_emitter);
- for (var i:uint = 0; i < 1000; i++) {
- _particles.push(new Particle());
- }
- addEventListener(Event.ENTER_FRAME, draw);
- stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDown);
- }
- private function draw(event:Event):void
- {
- _emitter.update();
- for each (var p:Particle in _particles) {
- if (!p.destroy) {
- //p.vy += 0.99;
- if (p.y >= 400) {
- p.vy *= -0.1;
- p.vx *= -0.9
- }
- p.update();
- }
- }
- }
- private function mouseDown(event:MouseEvent):void
- {
- addEventListener(Event.ENTER_FRAME, createParticle);
- stage.addEventListener(MouseEvent.MOUSE_UP, mouseUp);
- }
- private function mouseUp(event:MouseEvent):void
- {
- stage.removeEventListener(MouseEvent.MOUSE_UP, mouseUp);
- removeEventListener(Event.ENTER_FRAME, createParticle);
- }
- private function createParticle(event:Event):void
- {
- var count:uint = 0;
- for each (var p:Particle in _particles) {
- // 停止している Particle を探す
- if (p.destroy) {
- p.x = _emitter.x;
- p.y = _emitter.y;
- p.init();
- addChild(p);
- count++;
- }
- if (count > PARTICLE_NUM) break;
- }
- }
- }
- }
- import flash.display.Sprite;
- import flash.display.GradientType;
- class Emitter extends Sprite
- {
- public var vx:Number = 0;
- public var vy:Number = 0;
- public function Emitter()
- {
- //graphics.beginFill(0x808080);
- //graphics.drawCircle(0, 0, 10);
- //graphics.endFill();
- //blendMode = "add";
- }
- public function update():void
- {
- var dx:Number = root.mouseX - x;
- var dy:Number = root.mouseY - y;
- var d:Number = Math.sqrt(dx*dx+dy*dy) * 0.2;
- var rad:Number = Math.atan2(dy, dx);
- vx += Math.cos(rad)*d;
- vy += Math.sin(rad)*d;
- vx *= 0.7;
- vy *= 0.7;
- x += vx;
- y += vy;
- }
- }
- import flash.filters.BlurFilter;
- import flash.geom.Matrix;
- import flash.display.SpreadMethod;
- class Particle extends Sprite
- {
- public var vx:Number;
- public var vy:Number;
- public var life:Number;
- public var size:Number;
- private var _count:uint;
- private var _destroy:Boolean;
- /**
- * ブラウン運動関連
- */
- private var friction:Number = 0.99;
- private var vectx:Number = -0.4;
- private var vecty:Number = -0.8;
- private var xrandom:Number = 0.8;
- private var yrandom:Number = 0.3;
- public function Particle()
- {
- size = Math.random() * 30;
- var red:uint = Math.floor(Math.random()*100+156);
- var blue:uint = Math.floor(Math.random()*100+100);
- var green:uint = Math.floor(Math.random()*156);
- var color:Number = (red << 16) | (green << 8) | (blue);
- var fillType:String = GradientType.RADIAL;
- var colors:Array = [color , 0x000000];
- var alphas:Array = [100, 100];
- var ratios:Array = [0x00, 0xFF];
- var mat:Matrix = new Matrix();
- mat.createGradientBox(size * 2, size * 2, 0, -size, -size);
- var spreadMethod:String = SpreadMethod.PAD;
- graphics.clear();
- graphics.beginGradientFill(fillType, colors, alphas, ratios, mat, spreadMethod);
- graphics.drawCircle(0, 0, size);
- graphics.endFill();
- //filters = [new BlurFilter(8,8,2)];
- // 大量のオブジェクトを重ねるとおかしくなる
- blendMode = "add";
- _destroy = true;
- }
- public function init():void
- {
- vx = Math.random() * 20 - 10;
- vy = Math.random() * 20 - 10;
- life = Math.random() * 20 + 10;
- _count = 0;
- _destroy = false;
- }
- public function update():void
- {
- vx += Math.random()*xrandom + vectx;
- vy += Math.random()*yrandom + vecty;
- //nx += vx;
- //ny += vy;
- vx *= friction;
- vy *= friction;
- x += vx;
- y += vy;
- _count++;
- // 死亡フラグ
- if (life < _count) {
- _destroy = true;
- parent.removeChild(this);
- }
- }
- public function get destroy():Boolean
- {
- return _destroy;
- }
- }
浮かんで消える forked from: 浮かんで消える
- // forked from HaraMakoto's 浮かんで消える
- // forked from cellfusion's Particle Sample
- // write as3 code here..
- // 大量のパーティクルを発生させてみた
- // マウスを押してる間でてくるよ
- package
- {
- import flash.display.Sprite;
- import flash.display.StageQuality;
- import flash.events.Event;
- import flash.events.MouseEvent;
- //import net.hires.debug.Stats;
- [SWF(width="465", height="465", backgroundColor="0x000000", frameRate="30")]
- public class ParticleTest extends Sprite
- {
- private var _particles:Array = [];
- private var _emitter:Emitter;
- // 1フレーム間に発生させる Particle 数
- private const PARTICLE_NUM:uint = 10;
- public function ParticleTest()
- {
- stage.quality = StageQuality.LOW;
- setup();
- //addChild(new Stats());
- }
- private function setup():void
- {
- _emitter = new Emitter();
- addChild(_emitter);
- for (var i:uint = 0; i < 1000; i++) {
- _particles.push(new Particle());
- }
- addEventListener(Event.ENTER_FRAME, draw);
- stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDown);
- }
- private function draw(event:Event):void
- {
- _emitter.update();
- for each (var p:Particle in _particles) {
- if (!p.destroy) {
- //p.vy += 0.99;
- if (p.y >= 400) {
- p.vy *= -0.9;
- p.vx *= -0.9
- }
- p.update();
- }
- }
- }
- private function mouseDown(event:MouseEvent):void
- {
- addEventListener(Event.ENTER_FRAME, createParticle);
- stage.addEventListener(MouseEvent.MOUSE_UP, mouseUp);
- }
- private function mouseUp(event:MouseEvent):void
- {
- stage.removeEventListener(MouseEvent.MOUSE_UP, mouseUp);
- removeEventListener(Event.ENTER_FRAME, createParticle);
- }
- private function createParticle(event:Event):void
- {
- var count:uint = 0;
- for each (var p:Particle in _particles) {
- // 停止している Particle を探す
- if (p.destroy) {
- p.x = _emitter.x;
- p.y = _emitter.y;
- p.init();
- addChild(p);
- count++;
- }
- if (count > PARTICLE_NUM) break;
- }
- }
- }
- }
- import flash.display.Sprite;
- import flash.display.GradientType;
- class Emitter extends Sprite
- {
- public var vx:Number = 0;
- public var vy:Number = 0;
- public function Emitter()
- {
- //graphics.beginFill(0x808080);
- //graphics.drawCircle(0, 0, 10);
- //graphics.endFill();
- //blendMode = "add";
- }
- public function update():void
- {
- var dx:Number = root.mouseX - x;
- var dy:Number = root.mouseY - y;
- var d:Number = Math.sqrt(dx*dx+dy*dy) * 0.2;
- var rad:Number = Math.atan2(dy, dx);
- vx += Math.cos(rad)*d;
- vy += Math.sin(rad)*d;
- vx *= 0.7;
- vy *= 0.7;
- x += vx;
- y += vy;
- }
- }
- import flash.filters.BlurFilter;
- import flash.geom.Matrix;
- import flash.display.SpreadMethod;
- class Particle extends Sprite
- {
- public var vx:Number;
- public var vy:Number;
- public var life:Number;
- public var size:Number;
- private var _count:uint;
- private var _destroy:Boolean;
- /**
- * ブラウン運動関連
- */
- private var friction:Number = 0.99;
- private var vectx:Number = -0.4;
- private var vecty:Number = -0.8;
- private var xrandom:Number = 0.8;
- private var yrandom:Number = 0.3;
- public function Particle()
- {
- size = Math.random() * 30;
- var red:uint = Math.floor(Math.random()*100+156);
- var blue:uint = Math.floor(Math.random()*100+100);
- var green:uint = Math.floor(Math.random()*156);
- var color:Number = (red << 16) | (green << 8) | (blue);
- var fillType:String = GradientType.RADIAL;
- var colors:Array = [color , 0x000000];
- var alphas:Array = [100, 100];
- var ratios:Array = [0x00, 0xFF];
- var mat:Matrix = new Matrix();
- mat.createGradientBox(size * 2, size * 2, 0, -size, -size);
- var spreadMethod:String = SpreadMethod.PAD;
- graphics.clear();
- graphics.beginGradientFill(fillType, colors, alphas, ratios, mat, spreadMethod);
- graphics.drawCircle(0, 0, size);
- graphics.endFill();
- //filters = [new BlurFilter(8,8,2)];
- // 大量のオブジェクトを重ねるとおかしくなる
- blendMode = "add";
- _destroy = true;
- }
- public function init():void
- {
- vx = Math.random() * 20 - 10;
- vy = Math.random() * 20 - 10;
- life = Math.random() * 20 + 10;
- _count = 0;
- _destroy = false;
- }
- public function update():void
- {
- vx += Math.random()*xrandom + vectx;
- vy += Math.random()*yrandom + vecty;
- //nx += vx;
- //ny += vy;
- vx *= friction;
- vy *= friction;
- x += vx;
- y += vy;
- _count++;
- // 死亡フラグ
- if (life < _count) {
- _destroy = true;
- parent.removeChild(this);
- }
- }
- public function get destroy():Boolean
- {
- return _destroy;
- }
- }
浮かんで消える forked from: 浮かんで消える
- // forked from HaraMakoto's 浮かんで消える
- // forked from cellfusion's Particle Sample
- // write as3 code here..
- // 大量のパーティクルを発生させてみた
- // マウスを押してる間でてくるよ
- package
- {
- import flash.display.Sprite;
- import flash.display.StageQuality;
- import flash.events.Event;
- import flash.events.MouseEvent;
- //import net.hires.debug.Stats;
- [SWF(width="465", height="465", backgroundColor="0x000000", frameRate="30")]
- public class ParticleTest extends Sprite
- {
- private var _particles:Array = [];
- private var _emitter:Emitter;
- // 1フレーム間に発生させる Particle 数
- private const PARTICLE_NUM:uint = 10;
- public function ParticleTest()
- {
- stage.quality = StageQuality.LOW;
- setup();
- //addChild(new Stats());
- }
- private function setup():void
- {
- _emitter = new Emitter();
- addChild(_emitter);
- for (var i:uint = 0; i < 1000; i++) {
- _particles.push(new Particle());
- }
- addEventListener(Event.ENTER_FRAME, draw);
- stage.addEventListener(MouseEvent.MOUSE_DOWN, mouseDown);
- }
- private function draw(event:Event):void
- {
- _emitter.update();
- for each (var p:Particle in _particles) {
- if (!p.destroy) {
- //p.vy += 0.20;
- if (p.y >= 400) {
- p.vy *= -0.9;
- p.vx *= -0.9
- }
- p.update();
- }
- }
- }
- private function mouseDown(event:MouseEvent):void
- {
- addEventListener(Event.ENTER_FRAME, createParticle);
- stage.addEventListener(MouseEvent.MOUSE_UP, mouseUp);
- }
- private function mouseUp(event:MouseEvent):void
- {
- stage.removeEventListener(MouseEvent.MOUSE_UP, mouseUp);
- removeEventListener(Event.ENTER_FRAME, createParticle);
- }
- private function createParticle(event:Event):void
- {
- var count:uint = 0;
- for each (var p:Particle in _particles) {
- // 停止している Particle を探す
- if (p.destroy) {
- p.x = _emitter.x;
- p.y = _emitter.y;
- p.init();
- addChild(p);
- count++;
- }
- if (count > PARTICLE_NUM) break;
- }
- }
- }
- }
- import flash.display.Sprite;
- import flash.display.GradientType;
- class Emitter extends Sprite
- {
- public var vx:Number = 0;
- public var vy:Number = 0;
- public function Emitter()
- {
- //graphics.beginFill(0x808080);
- //graphics.drawCircle(0, 0, 10);
- //graphics.endFill();
- //blendMode = "add";
- }
- public function update():void
- {
- var dx:Number = root.mouseX - x;
- var dy:Number = root.mouseY - y;
- var d:Number = Math.sqrt(dx*dx+dy*dy) * 0.2;
- var rad:Number = Math.atan2(dy, dx);
- vx += Math.cos(rad)*d;
- vy += Math.sin(rad)*d;
- vx *= 0.7;
- vy *= 0.7;
- x += vx;
- y += vy;
- }
- }
- import flash.filters.BlurFilter;
- import flash.geom.Matrix;
- import flash.display.SpreadMethod;
- class Particle extends Sprite
- {
- public var vx:Number;
- public var vy:Number;
- public var life:Number;
- public var size:Number;
- private var _count:uint;
- private var _destroy:Boolean;
- /**
- * ブラウン運動関連
- */
- private var friction:Number = 0.50;
- private var vectx:Number = -0.4;
- private var vecty:Number = -0.8;
- private var xrandom:Number = 0.8;
- private var yrandom:Number = 0.3;
- public function Particle()
- {
- size = Math.random() * 30;
- var red:uint = Math.floor(Math.random()*100+156);
- var blue:uint = Math.floor(Math.random()*100+100);
- var green:uint = Math.floor(Math.random()*156);
- var color:Number = (red << 16) | (green << 8) | (blue);
- var fillType:String = GradientType.RADIAL;
- var colors:Array = [color , 0x000000];
- var alphas:Array = [100, 100];
- var ratios:Array = [0x00, 0xFF];
- var mat:Matrix = new Matrix();
- mat.createGradientBox(size * 2, size * 2, 0, -size, -size);
- var spreadMethod:String = SpreadMethod.PAD;
- graphics.clear();
- graphics.beginGradientFill(fillType, colors, alphas, ratios, mat, spreadMethod);
- graphics.drawCircle(0, 0, size);
- graphics.endFill();
- //filters = [new BlurFilter(8,8,2)];
- // 大量のオブジェクトを重ねるとおかしくなる
- blendMode = "add";
- _destroy = true;
- }
- public function init():void
- {
- vx = Math.random() * 30 - 10;
- vy = Math.random() * 30 - 10;
- life = Math.random() * 20 + 10;
- _count = 0;
- _destroy = false;
- }
- public function update():void
- {
- vx += Math.random()*xrandom + vectx;
- vy += Math.random()*yrandom + vecty;
- //nx += vx;
- //ny += vy;
- vx *= friction;
- vy *= friction;
- x += vx;
- y += vy;
- _count++;
- // 死亡フラグ
- if (life < _count) {
- _destroy = true;
- parent.removeChild(this);
- }
- }
- public function get destroy():Boolean
- {
- return _destroy;
- }
- }
notice: 



