TDME2 1.9.121
|
#include <tdme/gui/effects/GUIPositionEffect.h>
Public Member Functions | |
GUIPositionEffect (GUINode *guiNode) | |
Public constructor. More... | |
float | getPositionX () const |
void | setPositionX (float positionX) |
Set position X. More... | |
float | getPositionY () const |
void | setPositionY (float positionY) |
Set position Y. More... | |
float | getStartPositionX () const |
void | setStartPositionX (float positionX) |
Set start position X. More... | |
float | getStartPositionY () const |
void | setStartPositionY (float positionY) |
Set start position Y. More... | |
void | apply (GUIRenderer *guiRenderer) override |
Apply effect. More... | |
![]() | |
GUIEffect (EffectType type, GUINode *guiNode) | |
Public constructor. More... | |
virtual | ~GUIEffect () |
Destructor. More... | |
EffectType | getType () const |
bool | isActive () const |
float | getTimeTotal () const |
void | setTimeTotal (float timeTotal) |
Set time total. More... | |
int | getRepeat () const |
void | setRepeat (int repeat) |
Set repeat count or -1 for unlimited repeating. More... | |
float | isYoyo () const |
void | setYoyo (bool yoyo) |
Set yoyo. More... | |
float | isPersistant () const |
void | setPersistant (bool persistant) |
Set persistant, means if duration is reached this effect will still remain until removal. More... | |
Action * | getAction () const |
void | setAction (Action *action) |
Set action to be performed on effect end. More... | |
virtual void | start () |
Start this effect. More... | |
virtual void | stop () |
Stop this effect. More... | |
virtual bool | update (GUIRenderer *guiRenderer) |
Updates the effect to GUI renderer and updates time. More... | |
virtual void | apply (GUIRenderer *guiRenderer)=0 |
Apply effect. More... | |
Static Public Member Functions | |
static void | resetEffectState (GUIEffectState *effectState) |
Reset effect state regarding position effect. More... | |
Additional Inherited Members | |
![]() | |
enum | EffectType { EFFECTTYPE_NONE , EFFECTTYPE_COLOR , EFFECTTYPE_POSITION } |
![]() | |
static constexpr int | REPEAT_UNLIMITED { -1 } |
![]() | |
EffectType | type { EFFECTTYPE_NONE } |
bool | active { false } |
int64_t | timeLast { -1LL } |
float | timeTotal { 0.0 } |
float | timeLeft { 0.0 } |
float | timePassed { 0.0 } |
int | repeat { 0 } |
int | repeatLeft { 0 } |
bool | yoyo { false } |
int | yoyoLeft { 0 } |
bool | persistant { false } |
Action * | action { nullptr } |
GUINode * | node { nullptr } |
GUIEffectState | originalStartState |
GUIEffectState | originalEndState |
GUIEffectState | startState |
GUIEffectState | endState |
GUIPositionEffect | ( | GUINode * | guiNode | ) |
|
overridevirtual |
|
inline |
Definition at line 42 of file GUIPositionEffect.h.
|
inline |
Definition at line 57 of file GUIPositionEffect.h.
|
inline |
Definition at line 72 of file GUIPositionEffect.h.
|
inline |
Definition at line 87 of file GUIPositionEffect.h.
|
inlinestatic |
Reset effect state regarding position effect.
effectState | effect state |
Definition at line 28 of file GUIPositionEffect.h.
|
inline |
|
inline |
|
inline |
Set start position X.
positionX | start position X |
Definition at line 80 of file GUIPositionEffect.h.
|
inline |
Set start position Y.
positionX | start position Y |
Definition at line 95 of file GUIPositionEffect.h.