Merge pull request #3559 from Antriel/dynamic-bitmaptext-fix

Add missing letterSpacing to DynamicBitmapText
This commit is contained in:
Richard Davey 2018-04-13 12:08:27 +01:00 committed by GitHub
commit 237732752f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,6 +116,16 @@ var DynamicBitmapText = new Class({
*/
this.fontSize = size || this.fontData.size;
/**
* Adds/Removes spacing between characters
* Can be a negative or positive number
*
* @name Phaser.GameObjects.DynamicBitmapText#letterSpacing
* @type {number}
* @since 3.4.1
*/
this.letterSpacing = 0;
this.setTexture(entry.texture, entry.frame);
this.setPosition(x, y);
this.setOrigin(0, 0);