import { GUI } from "dat.gui"; export class Settings { constructor(rapierDebug) { this.gui = new GUI(); this.rapierDebug = rapierDebug; this.params = { rapierDebug: rapierDebug } this._init(); } _init() { const generalFolder = this.gui.addFolder('General'); generalFolder.add(this.params, 'rapierDebug'); } }