mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
Fixed null comparison
This commit is contained in:
parent
0ceb9d390d
commit
b8094cc078
1 changed files with 1 additions and 1 deletions
|
@ -861,7 +861,7 @@ var ParticleEmitter = new Class({
|
||||||
|
|
||||||
this.acceleration = (this.accelerationX !== 0 || this.accelerationY !== 0);
|
this.acceleration = (this.accelerationX !== 0 || this.accelerationY !== 0);
|
||||||
|
|
||||||
this.moveTo = (this.moveToX !== null && this.moveToY !== null);
|
this.moveTo = (this.moveToX !== 0 && this.moveToY !== 0);
|
||||||
|
|
||||||
// Special 'speed' override
|
// Special 'speed' override
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue