阅读量:0
Spine3.8.75(包括SpinePro3.8.75)是不能在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
1.Spine里用二进制导出
2.修改文件
导出后得到3份文件如下:
texture.skel.atlas
texture.skel.json
texture.skel.png
atlas和skel文件 重命名为如下
texture.atlas.txt
texture.skel.bytes
texture.skel.png
3.解决报错(3.1和3.2任选一种)
3.1修改Spine库文件
然后去文件
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.");
3.2修改版本号
如果运行时库不能改,直接改skel的版本号3.8.75改成3.8.74
如下图
4.导入工程
拖动到Unity工程
如果自动生成 如图这3份文件即成功