如何在COCOS2d-Android中为CCLabel设置CustomFont

时间:2013-08-01 08:42:44

标签: cocos2d-android

我需要在COCOS2d-Android中为CCLabel创建自定义字体。

currentVideoLabel = CCLabel.makeLabel(VideosLabels[currentSelected], "Faraco_Hand.ttf", winSize.width/41);
    currentVideoLabel.setPosition(CGPoint.make(winSize.width/2, 20));
    addChild(currentVideoLabel);

1 个答案:

答案 0 :(得分:0)

下载一些ttf字体,在资源文件夹中创建一个名为Font的文件夹。然后将下载的ttf文件放在fonts文件夹中。你可以像这样使用cclabel中的字体

currentVideoLabel = CCLabel.makeLabel(VideosLabels[currentSelected], "Fonts/Faraco_Hand.ttf", winSize.width/41);

实际上android中不支持所有字体。但你可以尝试一些。