mirror of https://github.com/axmolengine/axmol.git
21 lines
679 B
Plaintext
21 lines
679 B
Plaintext
|
|
class CCAnimation : public CCObject
|
|
{
|
|
const char* getName(void);
|
|
void setName(const char *pszName);
|
|
|
|
float getDelay(void);
|
|
void setDelay(float fDelay);
|
|
|
|
CCMutableArray<CCSpriteFrame*>* getFrames(void);
|
|
void setFrames(CCMutableArray<CCSpriteFrame*> *pFrames);
|
|
|
|
void addFrame(CCSpriteFrame *pFrame);
|
|
void addFrameWithFileName(const char *pszFileName);
|
|
void addFrameWithTexture(CCTexture2D* pobTexture, CCRect rect);
|
|
|
|
static CCAnimation* animation(void);
|
|
static CCAnimation* animationWithFrames(CCMutableArray<CCSpriteFrame*> *frames);
|
|
static CCAnimation* animationWithFrames(CCMutableArray<CCSpriteFrame*> *frames, float delay);
|
|
};
|