axmol/tools/tolua++/CCActionCamera.pkg

13 lines
355 B
Plaintext
Raw Normal View History

2011-06-14 14:31:25 +08:00
2011-12-25 11:48:37 +08:00
class CCActionCamera : public CCAction
{
void startWithTarget(CCNode *pTarget);
};
2011-06-14 14:31:25 +08:00
2011-12-25 11:48:37 +08:00
class CCOrbitCamera : public CCAction
{
void sphericalRadius(float *r, float *zenith, float *azimuth);
2011-06-14 14:31:25 +08:00
static CCOrbitCamera * actionWithDuration(float t, float radius, float deltaRadius, float angleZ, float deltaAngleZ, float angleX, float deltaAngleX);
};