mirror of https://github.com/axmolengine/axmol.git
15 lines
427 B
Plaintext
15 lines
427 B
Plaintext
|
|
class CCActionCamera : public CCActionInterval
|
|
{
|
|
void startWithTarget(CCNode *pTarget);
|
|
CCActionInterval* reverse();
|
|
};
|
|
|
|
class CCOrbitCamera : public CCActionCamera
|
|
{
|
|
CCObject* copyWithZone(CCZone* pZone);
|
|
void sphericalRadius(float *r, float *zenith, float *azimuth);
|
|
|
|
static CCOrbitCamera * create(float t, float radius, float deltaRadius, float angleZ, float deltaAngleZ, float angleX, float deltaAngleX);
|
|
};
|