2014-03-04 16:51:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#include "UITextBMFontTest.h"
|
|
|
|
|
|
|
|
|
|
|
|
// UITextBMFontTest
|
|
|
|
|
|
|
|
bool UITextBMFontTest::init()
|
|
|
|
{
|
|
|
|
if (UIScene::init())
|
|
|
|
{
|
|
|
|
Size widgetSize = _widget->getSize();
|
|
|
|
|
|
|
|
Text* alert = Text::create();
|
|
|
|
alert->setText("TextBMFont");
|
2014-03-26 23:33:58 +08:00
|
|
|
alert->setFontName("fonts/Marker Felt.ttf");
|
2014-03-04 16:51:35 +08:00
|
|
|
alert->setFontSize(30);
|
|
|
|
alert->setColor(Color3B(159, 168, 176));
|
|
|
|
alert->setPosition(Point(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 1.75f));
|
|
|
|
_uiLayer->addChild(alert);
|
|
|
|
|
|
|
|
// Create the TextBMFont
|
2014-04-02 18:16:17 +08:00
|
|
|
TextBMFont* textBMFont = TextBMFont::create("BMFont", "cocosui/bitmapFontTest2.fnt");
|
|
|
|
// textBMFont->setFntFile("cocosui/bitmapFontTest2.fnt");
|
|
|
|
// textBMFont->setText("BMFont");
|
2014-03-04 16:51:35 +08:00
|
|
|
textBMFont->setPosition(Point(widgetSize.width / 2, widgetSize.height / 2.0f + textBMFont->getSize().height / 8.0f));
|
|
|
|
_uiLayer->addChild(textBMFont);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2014-03-11 17:13:54 +08:00
|
|
|
}
|