#include <dustymovetask.h>
Inheritance diagram for DustyEngine::MoveTask:

Public Member Functions | |
| MoveTask () | |
| virtual | ~MoveTask () |
| The destructor will release the SceneNode this task uses, if one has been assigned. | |
| void | SetVector (irr::core::vector3df vector) |
| irr::core::vector3df | GetVector () |
| void | OnUpdate () |
| MoveTask's OnUpdate will move a SceneNode that is associated with the task by a certain vector each time it is executed. | |
Protected Attributes | |
| irr::core::vector3df | moveVector |
Definition at line 12 of file dustymovetask.h.
|
|
|
|
|
The destructor will release the SceneNode this task uses, if one has been assigned.
|
|
|
GetVector returns the vector this task applies to the SceneNode each time the task is executed.
Definition at line 29 of file dustymovetask.h. |
|
|
MoveTask's OnUpdate will move a SceneNode that is associated with the task by a certain vector each time it is executed.
Reimplemented from DustyEngine::DummyTask. Reimplemented in DustyEngine::MoveBoundedTask. |
|
|
SetVector sets the movement vector to apply to this task. Each time the task is updated, this vector is added to the position of the SceneNode associated with the task.
Definition at line 22 of file dustymovetask.h. |
|
|
Definition at line 38 of file dustymovetask.h. |
1.4.6-NO