• Runtimes
  • Phaser 3.6.0 - spine 4.1 - ES6 loading not working

There are no errors. The character doesn't show.
But if we change Phaser to 3.55.2, it loads.

Does anyone have any suggestions on how we can solve this ?
Thanks !


Our binary and atlas are exported as 4.1 from spine Pro 4.1.20.
Dependancies are:

    "@esotericsoftware/spine-canvas": "^4.2.14",
    "@esotericsoftware/spine-core": "^4.2.14",
    "@esotericsoftware/spine-phaser": "^4.2.14",
    "@esotericsoftware/spine-webgl": "^4.2.14",
    "phaser": "^3.6.0",

import * as spine from "@esotericsoftware/spine-phaser";
  plugins: {
    scene: [
        { key: "SpinePlugin", plugin: spine.SpinePlugin, mapping: "spine" }
    ]
  },

and then in our scene, we are doing

   preload() {
        this.load.spineBinary("sw-data", "https://zoombies.world/spine/binary/space_walker_green.skel ");
        this.load.spineAtlas("sw-atlas", "https://zoombies.world/spine/binary/Moon_Walker_01.atlas");
    }

    create(data) {
        const walker = this.add.spine(400, 400, 'sw-data', "sw-atlas");
        walker.scale = 5.5;
        walker.animationState.setAnimation(0, "idle", true);
}

We can console.log('spaceWalker', walker) the walker as

--

spaceWalker: SpineGameObject {_events: Events, _eventsCount: 2, scene: Scene, displayList: DisplayList, type: 'spine', …}active: trueanimationState: AnimationState {tracks: Array(1), timeScale: 1, unkeyedState: 394, events: Array(0), listeners: Array(0), …}animationStateData: AnimationStateData {animationToMixTime: {…}, defaultMix: 0, skeletonData: SkeletonData}blendMode: -1body: nullboundsProvider: SetupPoseBoundsProvider {}cameraFilter: 0data: nulldisplayList: DisplayList {parent: SkullValley, list: Array(3047), position: 0, addCallback: ƒ, removeCallback: ƒ, …}height: 632.6057272606988ignoreDestroy: falseinput: nullname: ""parentContainer: nullplugin: SpinePlugin {pluginManager: PluginManager, game: Game, scene: Scene, systems: Systems, pluginKey: 'spine', …}premultipliedAlpha: truerenderFlags: 15scene: Scene {sys: Systems, game: Game, anims: AnimationManager, cache: CacheManager, plugins: PluginManager, …}skeleton: Skeleton {_updateCache: Array(42), skin: null, scaleX: 1, _scaleY: 1, x: 0, …}state: 0tabIndex: -1type: "spine"w: 0width: 436.99995794674743x: 800y: 800z: 0_displayOriginX: 208.4079727186385_displayOriginY: 617.5400512433267_events: Events {addedtoscene: EE, removedfromscene: EE}_eventsCount: 2_scaleX: 0.5_scaleY: 0.5alpha: (...)alphaBottomLeft: (...)alphaBottomRight: (...)alphaTopLeft: (...)alphaTopRight: (...)angle: (...)depth: (...)displayHeight: (...)displayWidth: (...)rotation: (...)scale: (...)visible: (...)displayOriginX: (...)displayOriginY: (...)scaleX: (...)scaleY: (...)[[Prototype]]: BaseSpineGameObject
map.js:1646

Related Discussions
...

Hm, it looks like the mime-type of your https://zoombies.world/spine/binary/Moon_Walker_01.webp file is wrong. But that doesn't appear to be the problem. I just slammed your URLs into our spine-phaser TypeScript example here:
https://github.com/EsotericSoftware/spine-runtimes/tree/4.1/spine-ts/spine-phaser/example/typescript

Works as intended:

I don't know what your build setup looks like. In my case, I'm using esbuild to transpile TypeScript to JavaScript and pull in and bundle the dependencies into a single .js file.

Have a look at the packages.json file for the versions I use:

├── @esotericsoftware/spine-phaser@4.1.31
├── concurrently@7.6.0
├── esbuild@0.17.17
├── live-server@1.2.2
└── phaser@3.60.0

I use spine-phaser version ~4.1.31, as you export from Spine Editor 4.1.x. The major.minor version of the runtime and the editor version you exported from must always match. It's sadly a bit unfortunate that in the JavaScript world it's common to just slap ^ in front of all version strings...

The other difference is that I'm using phaser version 3.60.0 (the latest release) instead of 3.6.0 (a very old release). Is there any reason why you are using 3.6.0?

Thank you for the quick reply !
o yes, that was a typo in this post for phaser@3.60.0

Wow, thanks man 🙂 that totally worked.

I removed the ^ and set the specific major and minor version

@esotericsoftware/spine-phaser@4.1.31
phaser@3.60.0

and Lenny has appeared in the world. Exciting !

Also thanks for the .webp info will sort that out too

  • A Nate le gusta esto.