UNPKG

phaser3-rex-plugins

Version:
11 lines (10 loc) 334 B
var GetExpandedChildWidth = function (child, colWidth) { var childWidth; var childConfig = child.rexSizer; if (childConfig.expandWidth) { var padding = childConfig.padding; childWidth = colWidth - padding.left - padding.right; } return childWidth; } export default GetExpandedChildWidth;