Cocos2dx CCLabelAtlas字体与CCLabelTTF字体的使用方法

前端之家收集整理的这篇文章主要介绍了Cocos2dx CCLabelAtlas字体与CCLabelTTF字体的使用方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


1.26、字体

1、CCLabelAtlas字体

示例代码

CCLabelAtlas*LBsocre4=CCLabelAtlas::create(CCString::createWithFormat("%d",c)->getCString(),"labelatlasimg.png",24,32,'0');

LBsocre4->setAnchorPoint(ccp(0,0.5));

LBsocre4->setPosition(ccp(200,200));

LBsocre4->setScale(0.7f);

LBsocre4->setString(CCString::createWithFormat("%d",c)->getCString());

this->addChild(LBsocre4,5);

2、CCLabelTTF字体

示例代码

CCLabelTTF*scoreLab=CCLabelTTF::create("0","Arial",35);

scoreLab->setPosition(ccp(a,b));

scoreLab->setAnchorPoint(ccp(0,1));

scoreLab->setColor(ccc3(255,0));

scoreLab->setString(CCString::createWithFormat("%d",c)->getCString());

this->addChild(scoreLab,2);


原文链接:https://www.f2er.com/cocos2dx/345007.html

猜你在找的Cocos2d-x相关文章