As the title says. No idea what to do. Spine Runtime 4.0
All Spine Events int values are 1,2,3 in Spine Editor, 0 in Unity
DTDT I'm sorry to hear you're having trouble. Could you send us that skeleton data via email so we can check the issue?: contact@esotericsoftware.com
DTDT Thank you for sending your skeleton data file! The data does not seem to be particularly problematic, so perhaps there is an error in your code.
For your information, I wrote the following simple test code to check it:
public class CheckEventInt : MonoBehaviour
{
void Start()
{
SkeletonAnimation skeletonAnimation = GetComponent<SkeletonAnimation>();
skeletonAnimation.AnimationState.Event += CheckAnimationStateEvent;
}
private void CheckAnimationStateEvent (Spine.TrackEntry trackEntry, Spine.Event e) {
Debug.Log("Event fired!: " + e.Data.Name + " / This event's Int value is " + e.Int);
}
}
Maybe I am mistaken in the docs. I was trying to retrieve the Int from e.Data.Int as opposed to e.Int. Is Data class used for something else? It also has the int, float and string fields on it.
DTDT EventData
stores the setup pose values for an Event. Event
stores the current pose values for an event. This is explained in the API Reference:
http://ja.esotericsoftware.com/spine-api-reference#EventData
http://esotericsoftware.com/spine-api-reference#Event
In your case, you are setting the Int values for Event keys, so using e.Int
should be appropriate.
@DTDT This has recently been asked on a github issue ticket here:
EsotericSoftware/spine-runtimes2359
Pasting the reply again below in case it helps understand Spine's design principles.
Please note that this is general design principle of the Spine runtimes, it applies to all shared setup pose data (ending with Data
) vs instance data (never ending with Data
).
http://esotericsoftware.com/spine-api-reference#EventData
http://esotericsoftware.com/spine-api-reference#Event
http://esotericsoftware.com/spine-api-reference#Class-diagram
"The instance data is created for each skeleton instance and stores the skeleton's pose and other state. The setup pose data is stateless and shared across skeleton instances. It contains the setup pose, attachments, and animations."