Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
AnimationTimer Class Reference

AnimationTimer class. This timer is for animating float value.
usage: More...

Inheritance diagram for AnimationTimer:
TimerBase

Detailed Description

AnimationTimer class. This timer is for animating float value.
usage:

class MyObject
{
ref AnimationTimer myAnim;
void MyObject()
{
myAnim = new AnimationTimer();
myAnim.Run(60, this, "Refresh");
}
void Refresh()
{
Print(myAnim.GetValue());
}
};

Definition at line 652 of file tools.c.


The documentation for this class was generated from the following file:
AnimationTimer
AnimationTimer class. This timer is for animating float value. usage:
Definition: tools.c:652
Print
proto void Print(void var)
Prints content of variable to console/log.
Refresh
void Refresh()
Definition: sizetochild.c:108