Package | Description |
---|---|
com.badlogic.gdx.utils |
Modifier and Type | Method and Description |
---|---|
static Timer.Task |
Timer.post(Timer.Task task)
Schedules a task on
Timer.instance . |
Timer.Task |
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 Timer.Task |
Timer.schedule(Timer.Task task,
float delaySeconds)
Schedules a task on
Timer.instance . |
static Timer.Task |
Timer.schedule(Timer.Task task,
float delaySeconds,
float intervalSeconds)
Schedules a task on
Timer.instance . |
static Timer.Task |
Timer.schedule(Timer.Task task,
float delaySeconds,
float intervalSeconds,
int repeatCount)
Schedules a task on
Timer.instance . |
Timer.Task |
Timer.scheduleTask(Timer.Task task,
float delaySeconds)
Schedules a task to occur once after the specified delay.
|
Timer.Task |
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.
|
Timer.Task |
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.
|
Modifier and Type | Method and Description |
---|---|
static Timer.Task |
Timer.post(Timer.Task task)
Schedules a task on
Timer.instance . |
Timer.Task |
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 Timer.Task |
Timer.schedule(Timer.Task task,
float delaySeconds)
Schedules a task on
Timer.instance . |
static Timer.Task |
Timer.schedule(Timer.Task task,
float delaySeconds,
float intervalSeconds)
Schedules a task on
Timer.instance . |
static Timer.Task |
Timer.schedule(Timer.Task task,
float delaySeconds,
float intervalSeconds,
int repeatCount)
Schedules a task on
Timer.instance . |
Timer.Task |
Timer.scheduleTask(Timer.Task task,
float delaySeconds)
Schedules a task to occur once after the specified delay.
|
Timer.Task |
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.
|
Timer.Task |
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.
|