fixed #1368: Implement EffectsAdvancedTest (Effect4). Added some comments.

This commit is contained in:
James Chen 2012-06-27 20:50:47 +08:00
parent c3fce65f7f
commit 86942aedb4
1 changed files with 13 additions and 1 deletions

View File

@ -140,6 +140,11 @@ public:
return pRet;
}
private:
Lens3DTarget()
: m_pLens3D(NULL)
{}
CCLens3D* m_pLens3D;
};
@ -152,10 +157,17 @@ void Effect4::onEnter()
CCActionInterval* move_back = move->reverse();
CCActionInterval* seq = (CCActionInterval *)(CCSequence::create( move, move_back, NULL));
/* In cocos2d-iphone, the type of action's target is 'id', so it supports using the instance of 'CCLens3D' as its target.
While in cocos2d-x, the target of action only supports CCNode or its subclass,
so we make an encapsulation for CCLens3D to achieve that.
*/
CCDirector* director = CCDirector::sharedDirector();
CCNode* pTarget = Lens3DTarget::create(lens);
// Please make sure the target been added to its parent.
this->addChild(pTarget);
director->getActionManager()->addAction(seq, pTarget, false);
addChild(pTarget);
this->runAction( lens );
}