最近遇到个问题,在用tilemap制作像素风地图后,xcode模拟器运行正常,打包真机运行发现部分地图出现瓦片间有缝隙的问题,如下图:
游戏引擎Cocos-2dx-Lua 3.10版本,地图用Tiled 0.10.2制作,试着在DesignResolutionSize下面下手,发现问题无法解决,后来查阅资料,发现在frameworks/cocos2d-x/cocos/base下,有一个名为ccConfig.h的文件,找到如下代码:
/** @def CC_FIX_ARTIFACTS_BY_STRECHING_TEXE L
* If enabled, the texture coordinates will be calculated by using this formula:
* - texCoord.left = (rect.origin.x*2+1) / (texture.wide*2);
* - texCoord.right = texCoord.left + (rect.size.width*2-2)/(texture.wide*2);
* The same for bottom and top.
* This formula prevents artifacts by using 99% of the texture.
* The "correct" way to prevent artifacts is by using the spritesheet-artifact-fixer.py or a similar tool.
* Affected nodes:
* - Sprite / SpriteBatchNode and subclasses: LabelBMFont, TMXTiledMap.
* - LabelAtlas.
* - QuadParticleSystem.
* - TileMap.
* To enabled set it to 1. Disabled by default.
* @since v0.99.5
*/
#ifndef CC_FIX_ARTIFACTS_BY_STRECHING_TEXEL
#define CC_FIX_ARTIFACTS_BY_STRECHING_TEXEL 0
#endif
将其中的0改为1,即:
#define CC_FIX_ARTIFACTS_BY_STRECHING_TEXEL 1
再打包就发现缝隙被压掉了,如图:
虽然可能重合部分不太美观,但至少玩家不仔细看是不会发觉的,不像之前那样那么刺眼。至于是否有其他更好的解决方法,或许可以尝试打包贴图的时候上下左右各留出1像素的空间,我还没有尝试,目前都是无缝隙打图片的。如果还有更好的办法都可以留言讨论~
来源:oschina
链接:https://my.oschina.net/u/2872113/blog/806552