Spine3.8.75(包括SpinePro3.8.75)是不能在Unity上运行的,因为代码把它禁掉了,解决方法如下
前期准备:
下载Unity版本的Spine运行时库导入到Unity工程
This Spine-Unity runtime works with data exported from Spine Editor version: 3.8.xx
Package version: spine-unity-3.8-2020-03-23.unitypackage

导出后得到3份文件如下:
texture.skel.atlas
texture.skel.json
texture.skel.png

atlas和skel文件 重命名为如下
texture.atlas.txt
texture.skel.bytes
texture.skel.png

然后去文件
Spine\Runtime\spine-csharp\SkeletonBinary.cs
把这2行代码注释掉
if ("3.8.75" == skeletonData.version)
throw new Exception("Unsupported skeleton data, please export with a newer version of Spine.");
如果运行时库不能改,直接改skel的版本号3.8.75改成3.8.74
如下图

拖动到Unity工程

如果自动生成 如图这3份文件即成功