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

29 lines
824 B
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "UITextAtlasTest.h"
// UITextAtlasTest
bool UITextAtlasTest::init()
{
if (UIScene::init())
{
Size widgetSize = _widget->getSize();
// Add the alert
2014-04-03 15:38:52 +08:00
Text* alert = Text::create("TextAtlas","fonts/Marker Felt.ttf",30);
2014-03-04 16:51:35 +08:00
alert->setColor(Color3B(159, 168, 176));
alert->setPosition(Vector2(widgetSize.width / 2.0f, widgetSize.height / 2.0f - alert->getSize().height * 1.75f));
2014-03-04 16:51:35 +08:00
_uiLayer->addChild(alert);
// Create the text atlas
TextAtlas* textAtlas = TextAtlas::create("1234567890", "cocosui/labelatlas.png", 17, 22, "0");
textAtlas->setPosition(Vector2((widgetSize.width) / 2, widgetSize.height / 2.0f));
2014-03-04 16:51:35 +08:00
_uiLayer->addChild(textAtlas);
return true;
}
return false;
2014-03-11 17:13:54 +08:00
}