• RuntimesGodot
  • No Sprite3D support? No PixelGrid support?

Related Discussions
...

Thank you @Harald !
This was really helpful!

I'm gonna give it a try and see how far I can get with the 3D workaround suggested in the Github Thread.
I'll also check if i can re-create the Pixel Grid as shader.
In case somebody already got something like this running, any link or help is appreciated!

One last thing though:
When using a custom build of Godot - do you think it will work with releases for consoles? Some companies offer additional source code for console builds, so where does the Spine build fit in there?

Thank you and happy weekend!

Oh! And another quick question...
You don't happen to know what algorithm the Pixel Grid viewport feature uses?
I got the pixelation shader working, but to reproduce the exact same thing it would be helpful to know how it's done in Spine (like average, median, mosaic and whatnot...)

Spine's pixel grid first renders the skeleton to a buffer at full resolution, then renders the buffer using the viewport camera. This causes rasterization to happen when rendering to the buffer. For example, when an image is rotated and you draw it scaled up, you'll see the pixels are rotated. By drawing it to the buffer first, the buffer is scaled up and the buffer's pixels are larger but not rotated.

(I'll have to let our other staff field your Godot questions! They are likely enjoying their weekend and will respond Monday.)

Hi @Nate !
Thanks for clarifying! So to get the correct rasterization you need to know the input size of the original image, is that correct?

In order to write a shader in Godot that does that I then need to get the size of the SpineSprite and pass it to the shader, I guess?
Did anybody try that out already?

Thanks for answering the questions! Really good support!
Looking forward to the Godot-staff answers! Thanks and have a good week!

  • इस पर Nate ने जवाब दिया।

    I'm not aware of anyone trying to reproduce the editor pixel grid functionality in Godot. You can get the bounding box of the skeleton in its coordinate system via SpineSprite.get_skeleton().get_bounds(). Depending on your scene hierarchy, you might have to transform those bounds further, i.e. by the SpineSprite and anything else that may modify the on-screen location of the sprite, like a camera system. That's not something we can anticipate or cover via our API.

    As for consoles, I'm working on turning spine-godot into an extension. W4 Games has indicated interest in that with regards to consoles as well, so there's a clear path forward plus safety for businesses targeting consoles with Godot via W4 Games. We ourselves do not have access to any console SDKs, so we won't be able to give support for that.

    Hi @Mario
    Thanks for the update!
    When you say you're working to turn it into an extension, do you mean like an addon that works with the default version of Godot (so no custom build required?)
    Great to hear that W4 is interested!

    Is there any ETA for the extension?
    And... any love for Sprite3D/SpineSprite3d? :-)

    bitsalive So to get the correct rasterization you need to know the input size of the original image, is that correct?

    Spine uses a 2048x2048 buffer. If your skeleton is larger than that (at 100% zoom), it will be cut off. You can see this in the editor by moving part of your skeleton far away with pixel grid enabled.

    When you say you're working to turn it into an extension, do you mean like an addon that works with the default version of Godot (so no custom build required?)

    Yes, as a GDExtension.

    Is there any ETA for the extension?

    When it's done 🙂 Sadly, it's a ton of work to switch over to GDExtension, as the API is incompatible with the Godot module API.

    And... any love for Sprite3D/SpineSprite3d? :-)

    When the conversion to a GDExtension is done.

    • इस पर bitsalive ने जवाब दिया।
    • Luke ओर SilverStraw ने इसे लाइक किया।
      एक महीने बाद में

      Mario
      Oh - i just saw your response!
      This is AWESOME! Can't wait for the GDExtension! Thanks for working on this!

      4 दिन बाद में

      The extension is complete, with two caveats: no support for AnimationPlayer, and specifying animation mixes in the inspector can't be done as nicely as with our custom Godot build. Other than that it's fully functional.

      I still have to fix up the automated builds so we also publish binaries for all platforms. Once its ready, we'll post on the blog, on here on the forum, and send out an email.

      Our you subscribe to the issue here:
      EsotericSoftware/spine-runtimes2651

      • इस पर bitsalive ने जवाब दिया।

        Mario
        Wow, that was fast! Very good news! Thank you!

        When you say, no support for AnimationPlayer- do you mean the ability to use Godot AnimationPlayer Editor when creating the Spine Animation Track, mentioned here in the docs:
        https://en.esotericsoftware.com/spine-godot#SpineAnimationTrack

        Are animation mixes working in general? Just not as comfy as in the build version?

        Also, is a Sprite3D Version supported yet?
        I used the workaround posted somewhere in the forum and it worked pretty well.

        And last one:
        Is there a version to download somewhere? Maybe i just didn't find it. Or do we wait for the automated builds?

        Lots of questions :-) But I'm super excited you got this working so quick! Really good job!

        When you say, no support for AnimationPlayer- do you mean the ability to use Godot AnimationPlayer Editor when creating the Spine Animation Track, mentioned here in the docs:
        https://en.esotericsoftware.com/spine-godot#SpineAnimationTrack

        Exactly. No support for Spine Animation Track in the GDExtension version of spine-godot

        Are animation mixes working in general? Just not as comfy as in the build version?

        Yes, they work either in the inspector by filling in the general purpose array UI (which is super uncomfortable), or via a script attached to your node that sets them on node initialization via the standard Spine API.

        Also, is a Sprite3D Version supported yet?

        Nope, that will come once I have finished the next point.

        Is there a version to download somewhere? Maybe i just didn't find it. Or do we wait for the automated builds?

        I'm currently working on setting up the automated builds. You can compile it yourself from source by:

        git clone https://github.com/esotericsoftware/spine-runtimes
        cd spine-runtimes/spine-godot
        ./build/setup-extension.sh 4.3-stable true
        scons target=editor

        This will clone the Spine Runtimes, setup everything so the extension can be build, and finally invokes SCons to build the extension for the platform you are on. The resulting binary will beplaced in examples-v4-extension/bin, along with the spine_godot_extension.gdextension file, which tells Godot where to find the shared libraries for the extension for each platform.

        I've only tested on macOS so far, and only editor builds. YMMV. That's why we'll provide automated builds 🙂

        One more caveat: it's currently not possible to generate nice, idiomatic C# bindings for GDExtensions. Instead, you'll have to go through the ClassDB and Object APIs provided by Godot. It's basically string-based, untyped, reflection.