|
| CCOrbitCamera () |
| ~CCOrbitCamera () |
bool | initWithDuration (float t, float radius, float deltaRadius, float angleZ, float deltaAngleZ, float angleX, float deltaAngleX) |
| initializes a CCOrbitCamera action with radius, delta-radius, z, deltaZ, x, deltaX More...
|
|
var | initWithDuration ( var t, var radius, var deltaRadius, var angleZ, var deltaAngleZ, var angleX, var deltaAngleX) |
| initializes a CCOrbitCamera action with radius, delta-radius, z, deltaZ, x, deltaX More...
|
|
void | sphericalRadius (float *r, float *zenith, float *azimuth) |
| positions the camera according to spherical coordinates More...
|
|
virtual CCObject * | copyWithZone (CCZone *pZone) |
virtual void | startWithTarget (CCNode *pTarget) |
| called before the action start. It will also set the target. More...
|
|
var | startWithTarget ( var pTarget) |
| called before the action start. It will also set the target. More...
|
|
virtual void | update (float time) |
| called once per frame. More...
|
|
var | update ( var time) |
| called once per frame. More...
|
|
| CCActionCamera () |
virtual | ~CCActionCamera () |
virtual CCActionInterval * | reverse () |
| returns a reversed action More...
|
|
local | reverse () |
| returns a reversed action More...
|
|
float | getElapsed (void) |
| how many seconds had elapsed since the actions started to run. More...
|
|
bool | initWithDuration (float d) |
| initializes the action More...
|
|
virtual bool | isDone (void) |
| returns true if the action has finished More...
|
|
var | isDone () |
| returns true if the action has finished More...
|
|
local | isDone () |
| returns true if the action has finished More...
|
|
virtual void | step (float dt) |
| called every frame with it's delta time. DON'T override unless you know what you are doing. More...
|
|
void | setAmplitudeRate (float amp) |
float | getAmplitudeRate (void) |
| CCFiniteTimeAction () |
| CCFiniteTimeAction () |
virtual | ~CCFiniteTimeAction () |
float | getDuration (void) |
| get duration in seconds of the action More...
|
|
var | getDuration () |
| get duration in seconds of the action More...
|
|
local | getDuration () |
| get duration in seconds of the action More...
|
|
void | setDuration (float duration) |
| set duration in seconds of the action More...
|
|
var | setDuration ( var duration) |
| set duration in seconds of the action More...
|
|
local | setDuration ( local duration) |
| set duration in seconds of the action More...
|
|
| CCAction (void) |
| ctor () |
| CCAction () |
virtual | ~CCAction (void) |
const char * | description () |
virtual void | stop (void) |
| called after the action has finished. More...
|
|
var | stop () |
| called after the action has finished. More...
|
|
local | stop () |
| called after the action has finished. More...
|
|
CCNode * | getTarget (void) |
void | setTarget (CCNode *pTarget) |
| The action will modify the target properties. More...
|
|
var | setTarget ( var pTarget) |
| The action will modify the target properties. More...
|
|
local | setTarget ( local pTarget) |
| The action will modify the target properties. More...
|
|
CCNode * | getOriginalTarget (void) |
local | getOriginalTarget () |
void | setOriginalTarget (CCNode *pOriginalTarget) |
| Set the original target, since target can be nil. More...
|
|
int | getTag (void) |
var | getTag () |
local | getTag () |
void | setTag (int nTag) |
var | setTag ( var nTag) |
local | setTag ( local nTag) |
| CCObject (void) |
virtual | ~CCObject (void) |
void | release (void) |
void | retain (void) |
CCObject * | autorelease (void) |
CCObject * | copy (void) |
bool | isSingleReference (void) const |
unsigned int | retainCount (void) const |
virtual bool | isEqual (const CCObject *pObject) |
virtual void | acceptVisitor (CCDataVisitor &visitor) |
|
static CCOrbitCamera * | create (float t, float radius, float deltaRadius, float angleZ, float deltaAngleZ, float angleX, float deltaAngleX) |
| creates a CCOrbitCamera action with radius, delta-radius, z, deltaZ, x, deltaX More...
|
|
var | create ( var t, var radius, var deltaRadius, var angleZ, var deltaAngleZ, var angleX, var deltaAngleX) |
| creates a CCOrbitCamera action with radius, delta-radius, z, deltaZ, x, deltaX More...
|
|
CCOrbitCamera action Orbits the camera around the center of the screen using spherical coordinates.