I was wondering whether it's just my project, but essentially after 20-30 minutes of gameplay, the game freezes/crashes and the console error has something to do with spine. Could be something wrong with the project rather than spine but I was curious whether someone else has also experienced this and if yes, what kind of sorcery did you do to fix it. Thank you all in advance

Related Discussions
...

It's impossible for us to say anything useful just based on the information you provided. Can you provide the logs with stack traces?

Hi Mario! It's super inconsistent and it took me quite some time to replicate it, however, this is the error I got:
ERROR: Disconnecting nonexistent signal 'internal_spine_objects_invalidated', slot: 211785:internal_spine_objects_invalidated.
at: _disconnect (core/object.cpp:1544)

It has something to do with the SpineAnimationState if I'm not mistaken.

Cheers

Hm, that is related to spine-godot, but given just that log, it's hard to tell what is going on.

The internal_spine_objects_invalidated is a signal that is emitted any time the underlying data of a SpineSprite changes, that is, it's skeleton data reference. It is also emitted if a SpineSkeletonData is changed.

Are you programmatically changing the skeleton data reference of a SpineSprite, or the skeleton and atlas asset references of a SpineSkeletonData resource?

Is there any way for me to reproduce this issue locally? I.e. can you create a simple scene you could share that reliably (even after 20-30 minutes) eventually crashes like that?