SplatJS / splat-ecs

MIT License
12 stars 3 forks source link

Make Splat work on latest firefox #75

Closed aquisenberry closed 1 year ago

aquisenberry commented 1 year ago

Only real code changes are in Scene.js line 27: this.onEnter = globals.require(this.sceneConfig.onEnter); -> this.onEnter = globals.require(this.sceneConfig.onEnter).default; line 30: this.onExit = globals.require(this.sceneConfig.onExit); -> this.onExit = globals.require(this.sceneConfig.onExit).default; line 100: var script = this.globals.require(system.name); -> var script = this.globals.require(system.name).default;

everything else is linting formatting, updating packages and changing to module from commonjs.

aquisenberry commented 1 year ago

Realized there are some things to work out