Cocos2d - 更改CCLabelBMFont大小

时间:2013-02-18 16:49:57

标签: fonts cocos2d-iphone font-size

我的游戏中有这样的文字标签

    scoreLabel = [CCLabelBMFont labelWithString:@"0" fntFile:@"hooge2.fnt"];
    scoreLabel.position = ccp( screenWidth * .9 , 20);
    [self addChild:scoreLabel z:depthLevelScore ];

我可以用代码更改此字体的大小吗?

1 个答案:

答案 0 :(得分:1)

CCLabelBMFont是一个位图字体。这意味着字形大小被硬编码到字体本身。因此,如果您想要更改字形的大小,则需要编辑hooge2.fnt并重新导出。