UNPKG

phaser4-rex-plugins

Version:
15 lines (12 loc) 284 B
var SetFixedSize = function (width, height) { if (width === undefined) { width = 0; } if (height === undefined) { height = 0; } this.fixedWidth = width; this.fixedHeight = height; return this; } export default SetFixedSize;