|
RioEngine
0.1
My first attempt to create a 3D WYSIWYG Game Engine
|
#include <cactioninterval.h>
Public Member Functions | |
| CMoveBy () | |
| CMoveBy (float duration, btVector3 &position) | |
| virtual void | startWithTarget (CGameObject *target) |
| virtual CActionInterval * | reverse () |
Public Member Functions inherited from CMoveTo | |
| CMoveTo () | |
| CMoveTo (float duration, btVector3 &position) | |
| virtual void | update (float t) |
Public Member Functions inherited from CActionInterval | |
| CActionInterval () | |
| CActionInterval (float duration) | |
| virtual void | initWithDuration (float duration) |
| virtual bool | isDone () |
| virtual void | step (float dt) |
Public Member Functions inherited from CFiniteTimeAction | |
| CFiniteTimeAction () | |
| float | getDuration () const |
Public Member Functions inherited from CAction | |
| CAction () | |
| CGameObject * | getOriginalTarget () const |
| virtual void | stop () |
| 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 CMoveTo | |
| btVector3 | m_endPosition |
| btVector3 | m_startPosition |
| btVector3 | m_delta |
Protected Attributes inherited from CFiniteTimeAction | |
| float | m_duration |
Protected Attributes inherited from CAction | |
| CGameObject * | m_originalTarget |
| CGameObject * | m_target |
Definition at line 76 of file cactioninterval.h.
|
inline |
Definition at line 78 of file cactioninterval.h.
| CMoveBy::CMoveBy | ( | float | duration, |
| btVector3 & | position | ||
| ) |
Definition at line 123 of file cactioninterval.cpp.
|
virtual |
returns a reversed action
Reimplemented from CActionInterval.
Definition at line 138 of file cactioninterval.cpp.
|
virtual |
called before the action start. It will also set the target.
Reimplemented from CMoveTo.
Definition at line 130 of file cactioninterval.cpp.