|
libgdx API | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Timer.Task | |
---|---|
com.badlogic.gdx.utils |
Uses of Timer.Task in com.badlogic.gdx.utils |
---|
Methods in com.badlogic.gdx.utils with parameters of type Timer.Task | |
---|---|
static void |
Timer.post(Timer.Task task)
Schedules a task on Timer.instance . |
void |
Timer.postTask(Timer.Task task)
Schedules a task to occur once as soon as possible, but not sooner than the start of the next frame. |
static void |
Timer.schedule(Timer.Task task,
float delaySeconds)
Schedules a task on Timer.instance . |
static void |
Timer.schedule(Timer.Task task,
float delaySeconds,
float intervalSeconds)
Schedules a task on Timer.instance . |
static void |
Timer.schedule(Timer.Task task,
float delaySeconds,
float intervalSeconds,
int repeatCount)
Schedules a task on Timer.instance . |
void |
Timer.scheduleTask(Timer.Task task,
float delaySeconds)
Schedules a task to occur once after the specified delay. |
void |
Timer.scheduleTask(Timer.Task task,
float delaySeconds,
float intervalSeconds)
Schedules a task to occur once after the specified delay and then repeatedly at the specified interval until cancelled. |
void |
Timer.scheduleTask(Timer.Task task,
float delaySeconds,
float intervalSeconds,
int repeatCount)
Schedules a task to occur once after the specified delay and then a number of additional times at the specified interval. |
|
libgdx API | |||||||||
PREV NEXT | FRAMES NO FRAMES |