OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DelayAction
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
DelayAction.java
21
public class
DelayAction
extends DelegateAction {
24
public
DelayAction
() {
27
public
DelayAction
(float duration) {
Actions.java
313
static public
DelayAction
delay (float duration) {
314
DelayAction
action = action(
DelayAction
.class);
319
static public
DelayAction
delay (float duration, Action delayedAction) {
320
DelayAction
action = action(
DelayAction
.class);
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Action.java
19
import com.badlogic.gdx.scenes.scene2d.actions.
DelayAction
;
53
* executed for some time, eg it may be {@link
DelayAction
delayed}. The actor's state is best queried in the first call to
Completed in 64 milliseconds