码迷,mamicode.com
首页 > 编程语言 > 详细

Unity3d新手入门之-----TexturePackers的使用

时间:2019-06-22 23:52:21      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:抖动   oss   outline   lin   batch   better   新手入门   博客   游戏   

刚开始从Cocos2dx转做Unity3D,不得不说组件化的开发真的是太方便了!

为了纪念之前不努力的那段工作时光,在面试碰壁之后,决定开始写博客记录自己的自救历程了。

 

从开始做Cocos2dx的时候,做的基本上就都是2d游戏,要减少内存损耗的第一步,个人觉得肯定是从资源下手了,用了以前一直在用的TexturePacker。


1、打成图集的功能不用说了。合理的使用图集能够有效的降低Batches与Draw Call。

2、TP打出来的图片,导入工程后是DXT5格式的。包括POT啊,抖动啊之类的功能设置起来都极其方便。

3、打成图集后图片占用内存真的小太多了。再详细的原理目前可能还是我没办法完全记住的内容,所以先记住了占用内存少。

4、(很重要,因为没以前麻烦了,我比较懒)以前还需要自己手写读取tp文件的脚本,现在只需要导入资源商店里的TexturePacker Importer就行了。

 

重点说一下Tracer Tolerance这个选项。

引用一段原文:

https://www.codeandweb.com/texturepacker/documentation/texture-settings

(only available if trim mode is Polygon)
Determines how precise the polygon approximates the sprite outline.

Small values lead to a very close-fitting polygon. This allows very good packing results, but increases the processing time needed by the packer. At runtime you might get a performance gain due to the reduced overdraw, or a performance loss due to the larger amount of vertices which have to be processed.

With large tracer tolerance values the polygon is only a rough approximation of the sprite outline. The packer performance will increase, but the sprite sheets might get a bit larger. Runtime performance might get better (less vertices to process) or worse (higher overdraw). Setup some performance tests to find the best value for your sprites and target platform!

数值越小,顶点越少,一定程度上会增加渲染区域,可能会增加性能开销。

数值越大,顶点越多,会减少多余的渲染区域,但因为顶点的增加,也可能会增加性能开销。

如何取值,要在实际项目中,自己去调试了。

Unity3d新手入门之-----TexturePackers的使用

标签:抖动   oss   outline   lin   batch   better   新手入门   博客   游戏   

原文地址:https://www.cnblogs.com/optexpr/p/11070901.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!