We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea1658 commit ae61122Copy full SHA for ae61122
1 file changed
src/gameobjects/particles/ParticleEmitter.js
@@ -367,14 +367,14 @@ var ParticleEmitter = new Class({
367
this.scaleY = new EmitterOp(config, 'scaleY', 1);
368
369
/**
370
- * Color tint applied to emitted particles. Any alpha component (0xAA000000) is ignored.
+ * Color tint applied to emitted particles. Value must not include the alpha channel.
371
*
372
* @name Phaser.GameObjects.Particles.ParticleEmitter#tint
373
* @type {Phaser.GameObjects.Particles.EmitterOp}
374
- * @default 0xffffffff
+ * @default 0xffffff
375
* @since 3.0.0
376
*/
377
- this.tint = new EmitterOp(config, 'tint', 0xffffffff);
+ this.tint = new EmitterOp(config, 'tint', 0xffffff);
378
379
380
* The alpha (transparency) of emitted particles.
0 commit comments