减少行间距CClabelTTF字体cocos2d-x

时间:2014-02-12 12:56:01

标签: line cocos2d-x spacing cclabelttf

我正在使用cclabelttf调整cocos2d-x中行间距的问题。 我只是想确保我们有任何属性来改变cocos2d-x

中的行间距

1 个答案:

答案 0 :(得分:1)

我最近想减少行间距(适用于整个应用范围,不适用于单个标签),并在此处写下我的工作:http://devdiary.arcticempire.ca/2014/05/02/dev-diary-31-cocos2d-x-ttf-line-spacing/

简而言之......获取Apple Font Tool Suite,然后

ftxdumperfuser -t hhea -A d font.ttf  # export font header to XML
[Edit XML - set lineGap to 0 and adjust ascender and descender as you like.
Test with all characters you'll want to print]
ftxdumperfuser -t hhea -A f font.ttf  # import XML to font header

如果你正在使用Android,你应该更改" top"到"上升"和"底部"到了#34;血统"在所有情况下都在Cocos2dxBitmap.java中。