axmol/tools/tolua++/CCActionManager.pkg

16 lines
442 B
Plaintext
Raw Normal View History

2011-06-14 14:31:25 +08:00
2012-02-02 14:26:38 +08:00
class CCActionManager : public CCObject
2011-06-14 14:31:25 +08:00
{
2012-02-02 14:26:38 +08:00
void removeAllActions(void);
void removeAllActionsFromTarget(CCObject *pTarget);
void removeAction(CCAction *pAction);
void removeActionByTag(int tag, CCObject *pTarget);
2011-06-14 14:31:25 +08:00
2012-02-02 14:26:38 +08:00
int numberOfRunningActionsInTarget(CCObject *pTarget);
2011-06-14 14:31:25 +08:00
2012-02-02 14:26:38 +08:00
void pauseTarget(CCObject *pTarget);
void resumeTarget(CCObject *pTarget);
2011-06-14 14:31:25 +08:00
2012-02-02 14:26:38 +08:00
static CCActionManager* sharedManager(void);
};