#include <dustycolorinterpolatedtask.h>
Inheritance diagram for DustyEngine::ColorInterpolatedTask:

Public Member Functions | |
| ColorInterpolatedTask () | |
| virtual | ~ColorInterpolatedTask () |
| void | SetStartColor (irr::video::SColor sc) |
| irr::video::SColor | GetStartColor () |
| void | SetEndColor (irr::video::SColor ec) |
| irr::video::SColor | GetEndColor () |
| irr::video::SColor | GetCurrentColor () |
| void | OnUpdate () |
| OnUpdate() is called by the TaskTree when the time has come to execute the task's code. | |
Protected Attributes | |
| irr::video::SColor | startColor |
| irr::video::SColor | endColor |
| irr::video::SColor | currentColor |
Definition at line 11 of file dustycolorinterpolatedtask.h.
|
|
|
|
|
|
|
|
GetCurrentColor() returns the current, interpolated color. This is the accessor to get the interpolated color.
Definition at line 48 of file dustycolorinterpolatedtask.h. |
|
|
GetEndColor() returns the ending color of the task.
Definition at line 41 of file dustycolorinterpolatedtask.h. |
|
|
GetStartColor() gives the beginning color of interpolation.
Definition at line 27 of file dustycolorinterpolatedtask.h. |
|
|
OnUpdate() is called by the TaskTree when the time has come to execute the task's code. OnUpdate is typically the most important function. OnUpdate is only called when enough time has passed or every frame, depending upon what the priority of the task is. If you want code to execute on a time-based basis, put that code here and add the task to the tree. Reimplemented from DustyEngine::InterpolatedTask. |
|
|
SetEndColor() sets the ending color for interpolation.
Definition at line 34 of file dustycolorinterpolatedtask.h. |
|
|
SetStartColor() sets the beginning color for the interpolation.
Definition at line 20 of file dustycolorinterpolatedtask.h. |
|
|
Definition at line 58 of file dustycolorinterpolatedtask.h. |
|
|
Definition at line 57 of file dustycolorinterpolatedtask.h. |
|
|
Definition at line 56 of file dustycolorinterpolatedtask.h. |
1.4.6-NO