我打算使用spine 做换装游戏。服饰只能使用基础模型来做。这样就造成我们只能使用一个spine文件来做服装套装。每出一件服饰我们就重新在导出一次。
基于主骨骼的spine.skel.bytes也会一直变大。我们计划服饰一直做下去,但是每次都要重新导出。还还有一直变大skel.bytes。都让我们感到不安,当skel.bytes变大到一定程度的时候。我担心我们会跑不动,有没更好的解决方式。这个对我们来很重要。希望可以帮我们解决这个大麻烦。感谢,
我们打算使用spine 做换装游戏碰到的问题
ue2m 通常,.skel.bytes
的文件大小不应该是一个大问题,但927KB对于一个二进制文件来说确实有点大。我建议在你的导出设置中勾选 Animation clean up
并取消勾选 Nonessential data
,如果你没有这样设置的话。
你可以在需要时才加载纹理,例如使用Adressables、Asset Bundles或任何其他延迟加载的手段。
过去有一些关于优化加载有大量皮肤的骨架的主题,我们的Unity专家Harald已经回答了这些问题,所以请参考他们:
https://esotericsoftware.com/forum/d/15867-memory-management-of-character-with-many-outfits
https://esotericsoftware.com/forum/d/16427-mix-and-match-outfits--addressables-loading-issue
The .skel.bytes
file size should not be a big problem usually, but 927KB is indeed a bit large for a binary file. I recommend checking Animation clean up
and unchecking Nonessential data
in your export settings, if you do not set them so.
You can load the textures only when needed, by e.g. using Adressables, Asset Bundles or any other means of delayed loading.
There are some threads about optimizing the loading of skeletons with large numbers of skins in the past, and our Unity expert, Harald has answered the questions, so please refer to them:
https://esotericsoftware.com/forum/d/15867-memory-management-of-character-with-many-outfits
https://esotericsoftware.com/forum/d/16427-mix-and-match-outfits--addressables-loading-issue
我在单独导出不带动画的项目是无法被导出的。
如图我单独导出没有skin的文件工程
是没有图集的。请问怎么样操作骨骼可以被调用?
ue2m 能否请你向我们描述一下你想做什么?如果你想做的是实现延迟加载,那么应该没有必要把导出骨架数据和打包纹理分开。
如果你在寻找Addressables或AssetBundles的方法时遇到困难,请参考Unity的官方文档:
https://docs.unity3d.com/Packages/com.unity.addressables@1.20/manual/index.html
https://docs.unity3d.com/Manual/AssetBundlesIntro.html
Could you please describe to us what you are trying to do? If what you are trying to do is implement delayed loading, there should be no need to separate exporting the skeleton data and packing textures.
If you are having trouble finding the way around Addressables or AssetBundles, please refer to the Unity's official documentation:
https://docs.unity3d.com/Packages/com.unity.addressables@1.20/manual/index.html
https://docs.unity3d.com/Manual/AssetBundlesIntro.html