|
RioEngine
0.1
My first attempt to create a 3D WYSIWYG Game Engine
|
#include <cactioninterval.h>
Public Member Functions | |
| CActionInterval () | |
| CActionInterval (float duration) | |
| virtual void | initWithDuration (float duration) |
| virtual void | startWithTarget (CGameObject *target) |
| virtual bool | isDone () |
| virtual void | step (float dt) |
| virtual CActionInterval * | reverse () |
Public Member Functions inherited from CFiniteTimeAction | |
| CFiniteTimeAction () | |
| float | getDuration () const |
Public Member Functions inherited from CAction | |
| CAction () | |
| CGameObject * | getOriginalTarget () const |
| virtual void | stop () |
| virtual void | update (float t) |
| virtual | ~CAction () |
Public Member Functions inherited from CObject | |
| CObject () | |
| CObject (const CObject &object) | |
| CObject & | operator= (const CObject &object) |
| CObject * | retain () |
| unsigned int | release () const |
| CObject * | autorelease () |
| unsigned int | retainCount () const |
| bool | isValidCObject () const |
| virtual | ~CObject () |
Additional Inherited Members | |
Signals inherited from CAction | |
| void | onActionStart (CAction *action) |
| void | onActionDone (CAction *action) |
Static Public Member Functions inherited from CObject | |
| static void | safeRetain (void *pointer) |
| template<class T > | |
| static void | safeRelease (T *pointer) |
| template<class T > | |
| static void | safeReleaseArray (T *array) |
| static void | safeRelease (const char *pointer) |
Public Attributes inherited from CAction | |
| unsigned int | tag |
Protected Member Functions inherited from CObject | |
| virtual void | copyValuesFromObject (const CObject &object) |
Protected Attributes inherited from CFiniteTimeAction | |
| float | m_duration |
Protected Attributes inherited from CAction | |
| CGameObject * | m_originalTarget |
| CGameObject * | m_target |
Definition at line 39 of file cactioninterval.h.
|
inline |
Definition at line 42 of file cactioninterval.h.
|
explicit |
Definition at line 35 of file cactioninterval.cpp.
|
virtual |
Definition at line 41 of file cactioninterval.cpp.
|
virtual |
return YES if the action has finished
Reimplemented from CAction.
Definition at line 66 of file cactioninterval.cpp.
|
virtual |
returns a reversed action
Reimplemented from CFiniteTimeAction.
Reimplemented in CSequence, CScaleBy, and CMoveBy.
Definition at line 88 of file cactioninterval.cpp.
|
virtual |
|
virtual |
called every frame with its delta time. DON'T override unless you know what you are doing.
Reimplemented from CAction.
Definition at line 72 of file cactioninterval.cpp.