UNPKG

phaser4-rex-plugins

Version:
13 lines (9 loc) 315 B
import FullWindow from '../../../behaviors/fullwindow/FullWindow.js'; const Zone = Phaser.GameObjects.Zone; class FullWindowRectangle extends Zone { constructor(scene) { super(scene, 0, 0, 2, 2); this.fullWindow = new FullWindow(this); } } export default FullWindowRectangle;