phaser4-rex-plugins
Version:
30 lines (22 loc) • 673 B
JavaScript
var SetFont = function (key) {
if (key === this.font) {
return this;
}
var entry = this.scene.sys.cache.bitmapFont.get(key);
this.font = key;
if (entry) {
this.fontData = entry.data;
this.fromAtlas = (entry.fromAtlas === true);
this._fontSize = this.fontData.size;
this.setTexture(entry.texture, entry.frame);
} else {
console.warn(`Invalid BitmapText key: ${key}`);
this.fontData = undefined;
this.fromAtlas = undefined;
this._fontSize = 0;
this.setTexture();
}
this.updateText();
return this;
}
export default SetFont;