Base class for Easing actions. More...
#include <CCActionEase.h>
Public Member Functions | |
virtual ActionInterval * | getInnerAction () |
Get the pointer of the inner action. More... | |
virtual ActionEase * | clone () const override |
Returns a clone of action. More... | |
virtual ActionEase * | reverse () const override |
Returns a new action that performs the exactly the reverse action. More... | |
virtual void | startWithTarget (Node *target) override |
Called before the action start. More... | |
virtual void | stop () override |
Called after the action has finished. More... | |
virtual void | update (float time) override |
Called once per frame. More... | |
bool | initWithAction (ActionInterval *action) |
Initializes the action. More... | |
![]() | |
float | getElapsed (void) |
How many seconds had elapsed since the actions started to run. More... | |
void | setAmplitudeRate (float amp) |
Sets the ampliture rate, extension in GridAction. More... | |
float | getAmplitudeRate (void) |
Gets the ampliture rate, extension in GridAction. More... | |
virtual bool | isDone (void) const override |
Return true if the action has finished. More... | |
virtual void | step (float dt) override |
![]() | |
float | getDuration () const |
Get duration in seconds of the action. More... | |
void | setDuration (float duration) |
Set duration in seconds of the action. More... | |
![]() | |
virtual std::string | description () const |
Node * | getTarget () const |
Return certain target. More... | |
void | setTarget (Node *target) |
The action will modify the target properties. More... | |
Node * | getOriginalTarget () const |
Return a original Target. More... | |
void | setOriginalTarget (Node *originalTarget) |
Set the original target, since target can be nil. More... | |
int | getTag () const |
Returns a tag that is used to identify the action easily. More... | |
void | setTag (int tag) |
Changes the tag that is used to identify the action easily. More... | |
virtual | ~Action () |
![]() | |
void | retain () |
Retains the ownership. More... | |
void | release () |
Releases the ownership immediately. More... | |
Ref * | autorelease () |
Releases the ownership sometime soon automatically. More... | |
unsigned int | getReferenceCount () const |
Returns the Ref's current reference count. More... | |
virtual | ~Ref () |
Destructor. More... | |
![]() | |
virtual | ~Clonable () |
Ref * | copy () const |
Returns a copy of the Ref. More... | |
Public Attributes | |
CC_CONSTRUCTOR_ACCESS | __pad0__: ActionEase() {} virtual ~ActionEase() |
![]() | |
CC_CONSTRUCTOR_ACCESS | __pad0__: bool initWithDuration(float d) |
![]() | |
CC_CONSTRUCTOR_ACCESS | __pad0__: FiniteTimeAction() : _duration(0) {} virtual ~FiniteTimeAction(){}protected: float _duration |
![]() | |
CC_CONSTRUCTOR_ACCESS | __pad0__: Action() |
Protected Attributes | |
ActionInterval * | _inner |
The inner action. More... | |
![]() | |
float | _elapsed |
bool | _firstTick |
![]() | |
Node * | _originalTarget |
Node * | _target |
The "target". More... | |
int | _tag |
The action tag. More... | |
![]() | |
unsigned int | _referenceCount |
count of references More... | |
Additional Inherited Members | |
![]() | |
static const int | INVALID_TAG = -1 |
Default tag used for all the actions. More... | |
![]() | |
Ref () | |
Constructor. More... | |
Base class for Easing actions.
Ease actions are created from other interval actions. The ease action will change the timeline of the inner action.
|
inlineoverridevirtual |
Returns a clone of action.
Reimplemented from ActionInterval.
Reimplemented in EaseCubicActionInOut, EaseCubicActionOut, EaseCubicActionIn, EaseCircleActionInOut, EaseCircleActionOut, EaseCircleActionIn, EaseQuinticActionInOut, EaseQuinticActionOut, EaseQuinticActionIn, EaseQuarticActionInOut, EaseQuarticActionOut, EaseQuarticActionIn, EaseQuadraticActionInOut, EaseQuadraticActionOut, EaseQuadraticActionIn, EaseBezierAction, EaseBackInOut, EaseBackOut, EaseBackIn, EaseBounceInOut, EaseBounceOut, EaseBounceIn, EaseBounce, EaseElasticInOut, EaseElasticOut, EaseElasticIn, EaseElastic, EaseSineInOut, EaseSineOut, EaseSineIn, EaseExponentialInOut, EaseExponentialOut, CCBEaseInstant, EaseExponentialIn, EaseInOut, EaseOut, EaseIn, and EaseRateAction.
|
virtual |
Get the pointer of the inner action.
bool initWithAction | ( | ActionInterval * | action | ) |
Initializes the action.
|
inlineoverridevirtual |
Returns a new action that performs the exactly the reverse action.
Reimplemented from ActionInterval.
Reimplemented in EaseCubicActionInOut, EaseCubicActionOut, EaseCubicActionIn, EaseCircleActionInOut, EaseCircleActionOut, EaseCircleActionIn, EaseQuinticActionInOut, EaseQuinticActionOut, EaseQuinticActionIn, EaseQuarticActionInOut, EaseQuarticActionOut, EaseQuarticActionIn, EaseQuadraticActionInOut, EaseQuadraticActionOut, EaseQuadraticActionIn, EaseBezierAction, EaseBackInOut, EaseBackOut, EaseBackIn, EaseBounceInOut, EaseBounceOut, EaseBounceIn, EaseBounce, EaseElasticInOut, EaseElasticOut, EaseElasticIn, EaseElastic, EaseSineInOut, EaseSineOut, EaseSineIn, EaseExponentialInOut, EaseExponentialOut, CCBEaseInstant, EaseExponentialIn, EaseInOut, EaseOut, EaseIn, and EaseRateAction.
|
overridevirtual |
Called before the action start.
It will also set the target.
target | A certain target. |
Reimplemented from ActionInterval.
|
overridevirtual |
Called after the action has finished.
It will set the 'target' to nil. IMPORTANT: You should never call "Action::stop()" manually. Instead, use: "target->stopAction(action);".
Reimplemented from Action.
|
overridevirtual |
Called once per frame.
time a value between 0 and 1.
For example:
time | A value between 0 and 1. |
Reimplemented from Action.
Reimplemented in EaseCubicActionInOut, EaseCubicActionOut, EaseCubicActionIn, EaseCircleActionInOut, EaseCircleActionOut, EaseCircleActionIn, EaseQuinticActionInOut, EaseQuinticActionOut, EaseQuinticActionIn, EaseQuarticActionInOut, EaseQuarticActionOut, EaseQuarticActionIn, EaseQuadraticActionInOut, EaseQuadraticActionOut, EaseQuadraticActionIn, EaseBezierAction, EaseBackInOut, EaseBackOut, EaseBackIn, EaseBounceInOut, EaseBounceOut, EaseBounceIn, EaseElasticInOut, EaseElasticOut, EaseElasticIn, EaseSineInOut, EaseSineOut, EaseSineIn, EaseExponentialInOut, EaseExponentialOut, CCBEaseInstant, EaseExponentialIn, EaseInOut, EaseOut, and EaseIn.
CC_CONSTRUCTOR_ACCESS __pad0__ |
|
protected |
The inner action.