phaser3-rex-plugins-fix-chun
Version:
28 lines (26 loc) • 834 B
JavaScript
// Default method
var RunWidthWrap = function (parentWidth) {
var child, expandedChildWidth, childWidth;
for (var i in this.sizerChildren) {
child = this.sizerChildren[i];
if (
(!child) ||
(child.isRexSizer && child.ignoreLayout) ||
(!child.runWidthWrap)
) {
continue;
}
expandedChildWidth = this.getExpandedChildWidth(child, parentWidth);
if (child.isRexSizer) {
childWidth = child.resolveWidth(expandedChildWidth);
if (childWidth === undefined) {
childWidth = expandedChildWidth;
}
} else {
childWidth = expandedChildWidth;
}
child.runWidthWrap(childWidth);
}
return this;
}
export default RunWidthWrap;