axmol/tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextBMFontTest/UITextBMFontTest.cpp

32 lines
940 B
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "UITextBMFontTest.h"
2015-04-09 12:23:47 +08:00
USING_NS_CC;
using namespace cocos2d::ui;
UITextBMFontTests::UITextBMFontTests()
{
ADD_TEST_CASE(UITextBMFontTest);
}
2014-03-04 16:51:35 +08:00
// UITextBMFontTest
bool UITextBMFontTest::init()
{
if (UIScene::init())
{
2014-06-20 11:18:53 +08:00
Size widgetSize = _widget->getContentSize();
2014-03-04 16:51:35 +08:00
2014-04-03 15:45:06 +08:00
Text* alert = Text::create("TextBMFont","TextBMFont",30);
2014-03-04 16:51:35 +08:00
alert->setColor(Color3B(159, 168, 176));
2014-06-20 11:18:53 +08:00
alert->setPosition(Vec2(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getContentSize().height * 1.75f));
2014-03-04 16:51:35 +08:00
_uiLayer->addChild(alert);
// Create the TextBMFont
TextBMFont* textBMFont = TextBMFont::create("BMFont", "cocosui/bitmapFontTest2.fnt");
2014-06-20 11:18:53 +08:00
textBMFont->setPosition(Vec2(widgetSize.width / 2, widgetSize.height / 2.0f + textBMFont->getContentSize().height / 8.0f));
2014-03-04 16:51:35 +08:00
_uiLayer->addChild(textBMFont);
return true;
}
return false;
2014-03-11 17:13:54 +08:00
}