sebashwa / phaser3-plugin-isometric

Feature-packed axonometric plugin for Phaser 3 which stays true to the Phaser API.
https://sebashwa.github.io/phaser3-plugin-isometric
MIT License
172 stars 36 forks source link

Doesn't work with Phaser 3.8 Plugin changes #1

Closed jjttjj closed 6 years ago

jjttjj commented 6 years ago

There seem to be some issues with tis plugin and the changes to the plugin system in Phaser 3.8, seen here: https://github.com/photonstorm/phaser/blob/master/CHANGELOG.md#new-plugin-manager

I can get the IsoPlugin loaded with

this.load.scenePlugin({key: "IsoPlugin",
 url: IsoPlugin,
 sceneKey: "iso"});

But IsoPhysics is not working, I believe due to the way the plugin key is expected to be here: https://github.com/sebashwa/phaser3-plugin-isometric/blob/master/src/physics/IsoPhysics.js#L24

I can continue to investigate this and try to put together a PR if you'd like.

jjttjj commented 6 years ago

I had something wrong on my end, this does work with the current version of phaser.

MrMonotone commented 6 years ago

@jjttjj Would you mind providing your example if you got it working?

EDIT: Figured it out see #2