axmol/tools/tolua++/CCActionCamera.pkg

15 lines
427 B
Plaintext
Raw Normal View History

2011-06-14 14:31:25 +08:00
2012-02-02 14:26:38 +08:00
class CCActionCamera : public CCActionInterval
{
void startWithTarget(CCNode *pTarget);
CCActionInterval* reverse();
2012-02-02 14:26:38 +08:00
};
2011-06-14 14:31:25 +08:00
2012-02-02 14:26:38 +08:00
class CCOrbitCamera : public CCActionCamera
{
CCObject* copyWithZone(CCZone* pZone);
2012-02-02 14:26:38 +08:00
void sphericalRadius(float *r, float *zenith, float *azimuth);
2011-06-14 14:31:25 +08:00
static CCOrbitCamera * create(float t, float radius, float deltaRadius, float angleZ, float deltaAngleZ, float angleX, float deltaAngleX);
2012-02-02 14:26:38 +08:00
};