UNPKG

@petkoneo/phaser3-rex-plugins

Version:
5 lines 247 B
var TextHeightToLinesCount = function (height) { // height = (lines * (lineHeight + lineSpacing)) - lineSpacing return (height - this.textLineSpacing) / (this.textLineHeight + this.textLineSpacing); } export default TextHeightToLinesCount;