Hi! Very excited about this however, I am having issues with the examples. After getting the Git, when I try to load "spine-runtimes/spine-godot/example/project.godot" I get an error box with "Error loading: helloworld.tscn Load failed due to missing dependencies: [url=res://assets/spineboy/spineboy-data-res.tres]res://assets/spineboy/spineboy-data-res.tres[/url]".

I can see that file in the FileSystem folders and if I choose "Fix Dependencies", I get the 'Dependencies For: helloworld.tscn" pop-up box with 2 entries: spineboy-helloworld.gd and spineboy-data-res.tres in the Resource section and [url=res://examples/01-helloworld/spineboy-helloworld.gd]res://examples/01-helloworld/spineboy-helloworld.gd[/url] and [url=res://assets/spineboy/spineboy-data-res.tres]res://assets/spineboy/spineboy-data-res.tres[/url] in the Path section.

Not sure what to do next as the "Fix Broken" button remains grayed out.

If I ignore the dependencies and press "Open Anyways", I get a "Load Errors" pop-up box with "Scene'res://assets/spineboy-data-res.tres has broken dependencies: [url=res://assets/spineboy/spineboy-pro.json::SpineSkeletonFileResource]res://assets/spineboy/spineboy-pro.json::SpineSkeletonFileResource[/url] [url=res://assets/spineboy/spineboy.atlas::SpineAtlasResource]res://assets/spineboy/spineboy.atlas::SpineAtlasResource[/url]"

I'm probably missing something simple, but if anyone has an idea, I am open to suggestions! Thanks - ChzBoi

EDIT - Found it...I was logged into the wrong machine with the old Godot build! Easy fix!

that's amazing! Thanks for creating this spine-godot Runtime!

how can I import the SpineSkeletonFileResource for the .skel or .json skeleton file and the SpineAtlasAssetResource ? because when I click import no resource is created.



maranpis yazdı

that's amazing! Thanks for creating this spine-godot Runtime!

how can I import the SpineSkeletonFileResource for the .skel or .json skeleton file and the SpineAtlasAssetResource ? because when I click import no resource is created.


I figured it out! I have made a video to everybody explaining how to import from spine to godot 😉



Also I have made a video of how to load the spine examples:

8 gün sonra

Hey everyone!
I'm new to the forum and I didn't find a Godot section to post this. I'm having problems on replicating the sample 08-animation-player.

I've done the following:

  • Start an empty 2D Scene
  • Create a child node of type SpineSprite
  • Fill the skeleton_data_res on editor with res://assets/spineboy/spineboy-data-res.tres
  • Create a grandchild node of type SpriteAnimationTrack

In the documentation at http://esotericsoftware.com/spine-godot#SpineAnimationTrack :

When creating a SpineAnimationTrack, an AnimationPlayer node is created and attached as a child.

That's not happening.

I made sure to check every variable of the original scene's nodes and put it on my test scene, mainly setting the Debug variable on the SpineAnimationTrack to true. Still, no automatic creation of the node AnimationPlayer.

I tried creating the AnimationPlayer node manually. The problem is that the automatic created node would allegedly be filled with animations from the skeleton_data_res. I tried making it the animations manually but I can't seem to find the properties animation_name and loop on SpineAnimationTrack.

I can force any property to create the track, then rename it. Still, I can't seem to be able to change the value.

What am I missing? I'm sure I must doing something wrong, but I still can't figure out what.
Thank you for your time!

Hello! How do I get the current animation playing and not display the same animation again if it is already shown? Been having trouble just implementing simple topdown movement because of that...

What is the bigger context?
You could set the looping off for example as explained here, so that the animation you set only plays once:
spine-godot Runtime Documentation: Animating a
(disclaimer: I am but a humble animator attempting to code in Godot for the first time)

Erika yazdı

What is the bigger context?
You could set the looping off for example as explained here, so that the animation you set only plays once:
http://esotericsoftware.com/spine-godot#Animating-a-
(disclaimer: I am but a humble animator attempting to code in Godot for the first time)

I might need to play around with it some more xD (anyway Spine is great! I could make animations that would usually take me ages to make in like a day).

Btw, Godot 3.5 was just released, will the Spine runtime be updated to support that version?

8 gün sonra
Mario yazdı

Already up-to-date 🙂 You can find the download links for the new binaries here:
spine-godot Runtime Documentation

Nice thank you 😃
Amazing software with amazing support!


It seems using the custom build Godot Spine version clashes with some plugins that also use JSON for data... Keeps saying error parsing JSON at line 0, which doesn't happen if I use the official build of Godot 3.5 (I use a bare new project with only that plugin for tests)

The big one I'm using is Dialogic, which is kinda essensial plugin if you want to have dialogs in the game. Any way to fix this or am I doing something wrong?

Animating my character in Godot is working great.

As far as setting up the character controller, I know I can do something like:

if Input.is_action_just_pressed("ui_left"):
get_animation_state().set_animation("Run", true, 0)
velocity.x -= speed

...this moves the character, but since I'm not extending KinematicBody2D I don't have access to 'move_and_slide()' & 'is_on_floor()' like most controller examples use.

So what I'm doing is setting the 'SpineSprite' node as a child of 'KinematicBody2D' node.

Then I can apply the animation Spine code to the SprineSprite node & have a separate script on the KinematicBody2D node to process anything I want with is_on_floor() & move_and_slide().

But I'm not sure if this is the best way to do this, or if it's better I just build out all the custom control physics all in the 'SpineSprite' script. Curious what anyone else is doing...

jdowdy6 yazdı

But I'm not sure if this is the best way to do this, or if it's better I just build out all the custom control physics all in the 'SpineSprite' script. Curious what anyone else is doing...

I mean, you'd do this for a regular KinematicBody2D + Sprite setup, wouldn't you?

That's a reasonable setup imho.

Okay cool thanks Ryusui & Mario.

13 gün sonra

Hello guys, 🙂 I have a question:

What is the best way to detect when a specific animation has finished that has been playback twice in a queued animation?

Let me explain:

I'm doing a boxing game where the enemy do a combo punch: left punch, right punch, and again same animation left punch.

First I tried to use the signal completed animation to go back to idle(if the animation name is "left punch" go back to idle animation) but obviously because the first animation and the last are the same after playback the first animation it will go back to idle skipping the rest of the combo(right punch and left punch again).

The idea I've come up with is making two idle animations that are the same but with different names, one when the scene starts another one (that has been duplicated in Spine) with different name when the combo finish to go back to idle animation.

I tried using when animation is completed signal and using SpineTrackEntry get_current(track_id: int) something like this:

But it seems it doesn't work. Is there a way to detect when all the added animations has finished? Or detect when a specific animation has finished that has been playback twice in a queued animation?

I feel like you're leaning too heavily on the animation itself to time the mechanics.

Like...what I'd do is, I'd queue up the left jab, wait till it finishes, queue up the right jab, wait until that finishes, queue up the left jab again, wait for that to finish, and then set the idle animation. You could, alternately, use signals to determine which animations have finished, and detect whether all three animations have played that way, but I think my suggested method would be more straightforward to implement.

@maranpis AnimationState.get_current() will not return null if you loop the animation, as the track entry will remain on the track indefinitely until you queue a new animation or clear the track entry.

I have a todo list item that will allow setting a signal callback on individual track entries as returned by add_animation or set_animation. That way, you can add a signal callback to the track entry and know exactly when it has started/completed (a loop)/ended, and do whatever you need to do. You can already do this by setting a signal callback on the animation state itself, then checking the track entry that your signal callback is passed, e.g.
https://github.com/EsotericSoftware/spine-runtimes/blob/4.1/spine-godot/example/examples/02-animation-state-listeners/animation-state-listeners.gd#L15

You can simply query the animation name of the animation represented by the track entry:

func _animation_completed(sprite: SpineSprite, animation_state: SpineAnimationState, track_entry: SpineTrackEntry):
   print("Animation completed: " + track_entry.get_animation().get_name())
Ryusui yazdı

I feel like you're leaning too heavily on the animation itself to time the mechanics.

Like...what I'd do is, I'd queue up the left jab, wait till it finishes, queue up the right jab, wait until that finishes, queue up the left jab again, wait for that to finish, and then set the idle animation. You could, alternately, use signals to determine which animations have finished, and detect whether all three animations have played that way, but I think my suggested method would be more straightforward to implement.

Hello Ryusui, thanks for your answer 🙂 . Considering that the animation goes like this (left_jab, right_jab_left_jab) I don't get how with signals I can differentiate the first left jab animation playback from the second jab animation playback. Could you explain it a little bit more, please?


Mario yazdı

@[silindi] AnimationState.get_current() will not return null if you loop the animation, as the track entry will remain on the track indefinitely until you queue a new animation or clear the track entry.

Hello Mario and thanks for your answer. The final animation "idle" is the solution I have found to finish the combo and go back to idle animation. But before I just have the piece of code without the last animation:

Ebrius_Spine_animation.set_animation("ebrius_left_jab",false,0)
   Ebrius_Spine_animation.add_animation("ebrius_right_jab",fixed_delay,false,0)
   Ebrius_Spine_animation.add_animation("ebrius_left_jab",fixed_delay, false,0)

So I thought that when the last animation finishes, the AnimationState.get_current() in the func _animation_completed will give me null. Apparently, when the left jab animation finishes, it stays in the last frame of the animation, so I guess the track still has the animation and won't give null.

I might be misunderstanding how your game works but it feels like you're stuck on the idea of "the final left jab has to reset the animation." What's wrong with setting a count for the number of queued animations, decrementing it by one each time an animation in the sequence ends, and when it hits 0, returning to the idle state? You could configure this for any sequence of animations, without having to worry about which specific ones are queued. (And if anything interrupts the sequence - like the character getting hit mid-combo - you could set the count to 0 then!)

But yeah, to explain my original idea better, you could also set it so the animation_complete callback sets each subsequent animation in the sequence in turn, instead of queueing them all at once.

7 gün sonra
Ryusui yazdı

I might be misunderstanding how your game works but it feels like you're stuck on the idea of "the final left jab has to reset the animation." What's wrong with setting a count for the number of queued animations, decrementing it by one each time an animation in the sequence ends, and when it hits 0, returning to the idle state? You could configure this for any sequence of animations, without having to worry about which specific ones are queued. (And if anything interrupts the sequence - like the character getting hit mid-combo - you could set the count to 0 then!).

That's a great idea! thanks for the suggestion 🙂