1

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

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

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

4

1 回答 1

1

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

于 2013-02-18T16:54:59.503 回答