- Editado
Yep, that is likely your problem. The line that is having that error is the first line below (based on the Git repo: https://github.com/EsotericSoftware/spi ... ilities.cs). That means the "UpdateMechanimClips" method is never getting called.
if (lastHash != skeletonDataAsset.GetSkeletonData(true).Hash) {
//do any upkeep on synchronized assets
UpdateMecanimClips(skeletonDataAsset);
}
One thing that you can try is to change "true" in that line to "false". That parameter specifies if the GetSkeletonData function spits out debugging info. If you set it to false, you can see the debug info and maybe get a better idea of what is going on.