mirror of https://github.com/axmolengine/axmol.git
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
|
|
class CCAnimationFrame : public CCObject
|
|
{
|
|
CCAnimationFrame();
|
|
~CCAnimationFrame();
|
|
CCObject* copyWithZone(CCZone* pZone);
|
|
|
|
bool initWithSpriteFrame(CCSpriteFrame* spriteFrame, float delayUnits, CCDictionary* userInfo);
|
|
|
|
CCSpriteFrame* getSpriteFrame();
|
|
void setSpriteFrame(CCSpriteFrame* pSpFrame);
|
|
|
|
float getDelayUnits();
|
|
void setDelayUnits(float fDelayUnits);
|
|
|
|
CCDictionary* getUserInfo();
|
|
void setUserInfo(CCDictionary* pDict);
|
|
};
|
|
|
|
|
|
class CCAnimation : public CCObject
|
|
{
|
|
CCAnimation();
|
|
~CCAnimation(void);
|
|
CCObject* copyWithZone(CCZone* pZone);
|
|
|
|
static CCAnimation* create(void);
|
|
static CCAnimation* createWithSpriteFrames(CCArray* arrayOfSpriteFrameNames);
|
|
static CCAnimation* createWithSpriteFrames(CCArray* arrayOfSpriteFrameNames, float delay);
|
|
static CCAnimation* create(CCArray *arrayOfAnimationFrameNames, float delayPerUnit, unsigned int loops);
|
|
|
|
void addSpriteFrame(CCSpriteFrame *pFrame);
|
|
void addSpriteFrameWithFileName(const char *pszFileName);
|
|
void addSpriteFrameWithTexture(CCTexture2D* pobTexture, const CCRect& rect);
|
|
|
|
float getTotalDelayUnits();
|
|
|
|
float getDelayPerUnit();
|
|
void setDelayPerUnit(float fDelayPerUnits);
|
|
|
|
float getDuration();
|
|
|
|
CCAnimation* copy();
|
|
|
|
CCArray* getFrames();
|
|
void setFrames(CCArray* pFrames);
|
|
|
|
|
|
bool getRestoreOriginalFrame();
|
|
void setRestoreOriginalFrame(bool bRestoreFrame);
|
|
|
|
unsigned int getLoops();
|
|
void setLoops(unsigned int uLoops);
|
|
};
|