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

30 lines
679 B
C++
Raw Normal View History

2014-03-04 16:51:35 +08:00
#include "UITextBMFontTest_Editor.h"
2015-04-09 12:23:47 +08:00
USING_NS_CC;
using namespace cocos2d::ui;
UITextBMFontEditorTest::UITextBMFontEditorTest()
2014-07-01 15:47:40 +08:00
{
ADD_TEST_CASE(UITextBMFontTest_Editor);
2014-07-01 15:47:40 +08:00
}
// UITextBMFontTest_Editor
2014-03-04 16:51:35 +08:00
bool UITextBMFontTest_Editor::init()
{
if (UIScene_Editor::init())
{
2014-10-18 14:48:27 +08:00
Node* node = CSLoader::createNode("cocosui/UIEditorTest/UILabelBMFont/crossplatform_UILabelBMFont_Editor_1.csb");
Node* child = node->getChildByTag(5);
child->removeFromParent();
_layout = static_cast<Layout*>(child);
2014-03-04 16:51:35 +08:00
_touchGroup->addChild(_layout);
2014-07-01 15:47:40 +08:00
this->configureGUIScene();
2014-03-04 16:51:35 +08:00
return true;
}
return false;
2014-03-11 17:13:54 +08:00
}