CCLabelBMFont类在使用之前,需要添加好字体文件,包括一个png图片文件和一个fnt字体坐标文件。
static CCLabelBMFont *create(const char *str,const char *fntFile);
创建的时候我们只需要传入需要显示的内容以及fnt文件的路径。
例:
//需要testChinese.fnt和testChinese.png
CCLabelBMFont *bmfont=CCLabelBMFont ::create("中国", "testChinese.fnt");
bmfont->setPosition(ccp(150, 300));
addChild(bmfont);