我的游戏中有这样的文字标签
scoreLabel = [CCLabelBMFont labelWithString:@"0" fntFile:@"hooge2.fnt"];
scoreLabel.position = ccp( screenWidth * .9 , 20);
[self addChild:scoreLabel z:depthLevelScore ];
我可以用代码更改此字体的大小吗?
答案 0 :(得分:1)
CCLabelBMFont
是一个位图字体。这意味着字形大小被硬编码到字体本身。因此,如果您想要更改字形的大小,则需要编辑hooge2.fnt并重新导出。