UNPKG

phaser3-rex-plugins

Version:
13 lines (12 loc) 338 B
var GetTotalColumnProportions = function () { var result = 0, proportion; for (var i = 0; i < this.columnCount; i++) { proportion = this.columnProportions[i]; if (proportion > 0) { result += proportion; } } return result; } export default GetTotalColumnProportions;