mirror of https://github.com/axmolengine/axmol.git
42 lines
946 B
Plaintext
42 lines
946 B
Plaintext
|
|
class CCGridAction : public CCActionInterval
|
|
{
|
|
CCGridBase* getGrid(void);
|
|
|
|
static CCGridAction* create(ccGridSize gridSize, float duration);
|
|
};
|
|
|
|
class CCAccelDeccelAmplitude : public CCActionInterval
|
|
{
|
|
float getRate(void);
|
|
void setRate(float fRate);
|
|
|
|
static CCAccelDeccelAmplitude* create(CCAction *pAction, float duration);
|
|
};
|
|
|
|
class CCAccelAmplitude : public CCActionInterval
|
|
{
|
|
float getRate(void);
|
|
void setRate(float fRate);
|
|
|
|
static CCAccelAmplitude* create(CCAction *pAction, float duration);
|
|
};
|
|
|
|
class CCDeccelAmplitude : public CCActionInterval
|
|
{
|
|
float getRate(void);
|
|
void setRate(float fRate);
|
|
|
|
static CCDeccelAmplitude* create(CCAction *pAction, float duration);
|
|
};
|
|
|
|
class CCStopGrid : public CCActionInstant
|
|
{
|
|
static CCStopGrid* action(void);
|
|
};
|
|
|
|
class CCReuseGrid : public CCActionInstant
|
|
{
|
|
static CCReuseGrid* actionWithTimes(int times);
|
|
};
|