mirror of https://github.com/axmolengine/axmol.git
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
#ifndef __ANIMATION_TEST_SCENE_H__
|
|
#define __ANIMATION_TEST_SCENE_H__
|
|
|
|
#include "cocos2d.h"
|
|
#include "../../VisibleRect.h"
|
|
#include "../../testBasic.h"
|
|
#include "cocostudio/CocoStudio.h"
|
|
|
|
using namespace cocostudio::timeline;
|
|
|
|
|
|
class TimelineActionTestScene : public TestScene
|
|
{
|
|
public:
|
|
TimelineActionTestScene(bool bPortrait = false);
|
|
|
|
virtual void runThisTest();
|
|
|
|
// The CallBack for back to the main menu scene
|
|
virtual void MainMenuCallback(Ref* pSender);
|
|
};
|
|
|
|
enum {
|
|
TEST_ANIMATIONELEMENT = 0,
|
|
|
|
TEST_ANIMATION_LAYER_COUNT
|
|
};
|
|
|
|
class TimelineActionTestLayer : public Layer
|
|
{
|
|
public:
|
|
virtual std::string title() const;
|
|
virtual std::string subtitle() const;
|
|
|
|
virtual void restartCallback(Ref* pSender);
|
|
virtual void nextCallback(Ref* pSender);
|
|
virtual void backCallback(Ref* pSender);
|
|
|
|
// overrides
|
|
virtual void onEnter() override;
|
|
virtual void onExit() override;
|
|
|
|
protected:
|
|
MenuItemImage *restartItem;
|
|
MenuItemImage *nextItem;
|
|
MenuItemImage *backItem;
|
|
};
|
|
|
|
|
|
class TestTimelineAction : public TimelineActionTestLayer
|
|
{
|
|
public:
|
|
virtual void onEnter();
|
|
virtual std::string title() const override;
|
|
};
|
|
|
|
#endif // __ANIMATION_SCENE_H__
|