UNPKG

phaser3-rex-plugins

Version:
12 lines (11 loc) 449 B
var CheckSize = function (child, parent) { if (child.width < child.childrenWidth) { // Warning console.warn(`Layout width error: Parent=${parent.constructor.name}, Child=${child.constructor.name}`); } if (child.height < child.childrenHeight) { // Warning console.warn(`Layout height error: Parent=${parent.constructor.name}, Child=${child.constructor.name}`); } } export default CheckSize;