phaser4-rex-plugins
Version:
11 lines (10 loc) • 360 B
JavaScript
var GetExpandedChildHeight = function (child, rowHeight) {
var childHeight;
var childConfig = child.rexSizer;
if (childConfig.expandHeight) {
var padding = childConfig.padding;
childHeight = rowHeight - ((padding.top + padding.bottom) * this.scaleY);
}
return childHeight;
}
export default GetExpandedChildHeight;