|
virtual void | Update (float time) |
|
Object * | GetTarget () const |
|
Object * | GetOriginalTarget () const |
| Gets the original target.
|
|
BaseAction * | GetAction () const |
| Gets the action.
|
|
virtual bool | IsDone () const |
| Gets a value indicating whether this instance is done.
|
|
virtual void | Stop () |
|
| RefCounted () |
| Construct. Allocate the reference count structure and set an initial self weak reference.
|
|
virtual | ~RefCounted () |
| Destruct. Mark as expired and also delete the reference count structure if no outside weak references exist.
|
|
| RefCounted (const RefCounted &rhs)=delete |
| Prevent copy construction.
|
|
RefCounted & | operator= (const RefCounted &rhs)=delete |
| Prevent assignment.
|
|
int | AddRef () |
|
int | ReleaseRef () |
|
int | Refs () const |
|
int | WeakRefs () const |
|
RefCount * | RefCountPtr () const |
| Return pointer to the reference count structure.
|
|
bool | HasScriptObject () const |
| Return true if script runtime object wrapping this native object exists.
|
|
bool | IsScriptStrongRef () const |
| Return true if script reference is strong.
|
|
|
class | Urho3D::ActionManager |
|
◆ GetTarget()
Object * Urho3D::Actions::ActionState::GetTarget |
( |
| ) |
const |
|
inline |
Gets the target. Will be set with the 'StartAction' method of the corresponding Action. When the 'Stop' method is called, Target will be set to null.
◆ IsDone()
virtual bool Urho3D::Actions::ActionState::IsDone |
( |
| ) |
const |
|
inlinevirtual |
◆ Step()
void Urho3D::Actions::ActionState::Step |
( |
float |
dt | ) |
|
|
protectedvirtual |
◆ Stop()
void Urho3D::Actions::ActionState::Stop |
( |
| ) |
|
|
virtual |
Called after the action has finished. It will set the 'Target' to null. IMPORTANT: You should never call this method manually. Instead, use: "target.StopAction(actionState);"
Reimplemented in Urho3D::Actions::AttributeBlinkState.
◆ Update()
void Urho3D::Actions::ActionState::Update |
( |
float |
time | ) |
|
|
virtual |
Called once per frame. Time value is between 0 and 1 For example: 0 means that the action just started 0.5 means that the action is in the middle 1 means that the action is over
Reimplemented in Urho3D::Actions::AttributeActionState.
The documentation for this class was generated from the following files:
- Urho3D/Actions/ActionState.h
- Urho3D/Actions/ActionState.cpp