File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ Version 2.0.4 - "Mos Shirare" - in development
6969* QuadTree.retrieve now checks to see if the given Sprite has a body before carrying on.
7070* ArcadePhysics.collideSpriteVsGroup checks if Sprite has a body before carrying on, now safely skips sub-groups or other non-Sprite group children.
7171* Group.remove now checks the child to see if it's a member of the root Group before removing it, otherwise Pixi throws an Error.
72+ * The Emitter no longer checks if minParticleScale = maxParticleScale for the scale check, allowing for fixed scale particles again.
7273
7374
7475### New Features
Original file line number Diff line number Diff line change @@ -475,7 +475,7 @@ Phaser.Particles.Arcade.Emitter.prototype.emitParticle = function () {
475475 {
476476 particle . setScaleData ( this . scaleData ) ;
477477 }
478- else if ( this . minParticleScale !== this . maxParticleScale )
478+ else if ( this . minParticleScale !== 1 || this . maxParticleScale !== 1 )
479479 {
480480 particle . scale . set ( this . game . rnd . realInRange ( this . minParticleScale , this . maxParticleScale ) ) ;
481481 }
You can’t perform that action at this time.
0 commit comments