Skip to content

Commit 48b0c6c

Browse files
committed
Removed old files
1 parent 12a9233 commit 48b0c6c

7 files changed

Lines changed: 13 additions & 1012 deletions

File tree

v3/src/gameobjects/particles/ParticleEmitter.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,17 @@ var ParticleEmitter = new Class({
8686
this.speedY = null;
8787
}
8888

89+
this.moveTo = false;
90+
91+
this.moveToX = new EmitterOp(config, 'moveToX', 0, true);
92+
this.moveToY = new EmitterOp(config, 'moveToY', 0, true);
93+
94+
if (config.hasOwnProperty('moveToX') || config.hasOwnProperty('moveToY'))
95+
{
96+
this.moveTo = true;
97+
this.radial = false;
98+
}
99+
89100
this.bounce = new EmitterOp(config, 'bounce', 0, true);
90101

91102
this.scaleX = new EmitterOp(config, 'scaleX', 1);
@@ -97,6 +108,8 @@ var ParticleEmitter = new Class({
97108
this.scaleY = null;
98109
}
99110

111+
this.tint = new EmitterOp(config, 'tint', 0xffffffff);
112+
100113
this.alpha = new EmitterOp(config, 'alpha', 1);
101114

102115
this.lifespan = new EmitterOp(config, 'lifespan', 1000);

v3/src/math/curves/Curve.js

Lines changed: 0 additions & 330 deletions
This file was deleted.

0 commit comments

Comments
 (0)