mirror of https://github.com/axmolengine/axmol.git
Rename ActionManagerTest->RemoveTest to StopActionTest
This commit is contained in:
parent
bf1413e71f
commit
e0de7efa8e
|
@ -24,7 +24,7 @@ Layer* createActionManagerLayer(int nIndex)
|
||||||
case 0: return new CrashTest();
|
case 0: return new CrashTest();
|
||||||
case 1: return new LogicTest();
|
case 1: return new LogicTest();
|
||||||
case 2: return new PauseTest();
|
case 2: return new PauseTest();
|
||||||
case 3: return new RemoveTest();
|
case 3: return new StopActionTest();
|
||||||
case 4: return new ResumeTest();
|
case 4: return new ResumeTest();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ std::string PauseTest::subtitle() const
|
||||||
// RemoveTest
|
// RemoveTest
|
||||||
//
|
//
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
void RemoveTest::onEnter()
|
void StopActionTest::onEnter()
|
||||||
{
|
{
|
||||||
ActionManagerTest::onEnter();
|
ActionManagerTest::onEnter();
|
||||||
|
|
||||||
|
@ -245,7 +245,7 @@ void RemoveTest::onEnter()
|
||||||
l->setPosition( Point(VisibleRect::center().x, VisibleRect::top().y - 75) );
|
l->setPosition( Point(VisibleRect::center().x, VisibleRect::top().y - 75) );
|
||||||
|
|
||||||
auto pMove = MoveBy::create(2, Point(200, 0));
|
auto pMove = MoveBy::create(2, Point(200, 0));
|
||||||
auto pCallback = CallFunc::create(CC_CALLBACK_0(RemoveTest::stopAction,this));
|
auto pCallback = CallFunc::create(CC_CALLBACK_0(StopActionTest::stopAction,this));
|
||||||
auto pSequence = Sequence::create(pMove, pCallback, NULL);
|
auto pSequence = Sequence::create(pMove, pCallback, NULL);
|
||||||
pSequence->setTag(kTagSequence);
|
pSequence->setTag(kTagSequence);
|
||||||
|
|
||||||
|
@ -256,15 +256,15 @@ void RemoveTest::onEnter()
|
||||||
pChild->runAction(pSequence);
|
pChild->runAction(pSequence);
|
||||||
}
|
}
|
||||||
|
|
||||||
void RemoveTest::stopAction()
|
void StopActionTest::stopAction()
|
||||||
{
|
{
|
||||||
auto sprite = getChildByTag(kTagGrossini);
|
auto sprite = getChildByTag(kTagGrossini);
|
||||||
sprite->stopActionByTag(kTagSequence);
|
sprite->stopActionByTag(kTagSequence);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string RemoveTest::subtitle() const
|
std::string StopActionTest::subtitle() const
|
||||||
{
|
{
|
||||||
return "Remove Test";
|
return "Stop Action Test";
|
||||||
}
|
}
|
||||||
|
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
|
|
|
@ -46,7 +46,7 @@ public:
|
||||||
void unpause(float dt);
|
void unpause(float dt);
|
||||||
};
|
};
|
||||||
|
|
||||||
class RemoveTest : public ActionManagerTest
|
class StopActionTest : public ActionManagerTest
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual std::string subtitle() const override;
|
virtual std::string subtitle() const override;
|
||||||
|
|
Loading…
Reference in New Issue