mirror of https://github.com/axmolengine/axmol.git
issue #4636. finish UITextAtlasTest
This commit is contained in:
parent
b59beab61a
commit
08bf6c27f4
|
@ -12,17 +12,13 @@ bool UITextAtlasTest::init()
|
|||
Size widgetSize = _widget->getSize();
|
||||
|
||||
// Add the alert
|
||||
Text* alert = Text::create();
|
||||
alert->setText("TextAtlas");
|
||||
alert->setFontName("fonts/Marker Felt.ttf");
|
||||
alert->setFontSize(30);
|
||||
Text* alert = Text::create("TextAtlas","fonts/Marker Felt.ttf",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 text atlas
|
||||
TextAtlas* textAtlas = TextAtlas::create("1234567890", "cocosui/labelatlas.png", 17, 22, "0");
|
||||
// textAtlas->setProperty("1234567890", "cocosui/labelatlas.png", 17, 22, "0");
|
||||
textAtlas->setPosition(Point((widgetSize.width) / 2, widgetSize.height / 2.0f));
|
||||
_uiLayer->addChild(textAtlas);
|
||||
|
||||
|
|
Loading…
Reference in New Issue