mirror of https://github.com/axmolengine/axmol.git
3D:Sprite3D -> Node:Sprite3D
This commit is contained in:
parent
bf4b376ae5
commit
3b59b41116
|
@ -34,7 +34,6 @@ Controller g_aTestNames[] = {
|
|||
// TESTS MUST BE ORDERED ALPHABETICALLY
|
||||
// violators will be prosecuted
|
||||
//
|
||||
{ "3D: Sprite3D", [](){ return new Sprite3DTestScene(); }},
|
||||
{ "ActionManager", [](){return new ActionManagerTestScene(); } },
|
||||
{ "Actions - Basic", [](){ return new ActionsTestScene(); } },
|
||||
{ "Actions - Ease", [](){return new ActionsEaseTestScene();} },
|
||||
|
@ -51,15 +50,7 @@ Controller g_aTestNames[] = {
|
|||
|
||||
#endif
|
||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_WINRT)
|
||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_EMSCRIPTEN)
|
||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_NACL)
|
||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_MARMALADE)
|
||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_BADA)
|
||||
{ "Curl", []() { return new CurlTestScene(); } },
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
{ "Current Language", []() { return new CurrentLanguageTestScene(); } },
|
||||
{ "EventDispatcher", []() { return new EventDispatcherTestScene(); } },
|
||||
|
@ -84,6 +75,7 @@ Controller g_aTestNames[] = {
|
|||
{ "Node: Scene", [](){return new SceneTestScene();} },
|
||||
{ "Node: Spine", []() { return new SpineTestScene(); } },
|
||||
{ "Node: Sprite", [](){return new SpriteTestScene(); } },
|
||||
{ "Node: Sprite3D", [](){ return new Sprite3DTestScene(); }},
|
||||
{ "Node: TileMap", [](){return new TileMapTestScene(); } },
|
||||
{ "Node: FastTileMap", [](){return new TileMapTestSceneNew(); } },
|
||||
{ "Node: Text Input", [](){return new TextInputTestScene(); } },
|
||||
|
|
Loading…
Reference in New Issue