| Package | Description |
|---|---|
| com.badlogic.gdx.scenes.scene2d.actions |
| Modifier and Type | Method and Description |
|---|---|
static AlphaAction |
Actions.alpha(float a)
Sets the actor's alpha instantly.
|
static AlphaAction |
Actions.alpha(float a,
float duration)
Transitions from the alpha at the time this action starts to the specified alpha.
|
static AlphaAction |
Actions.alpha(float a,
float duration,
Interpolation interpolation)
Transitions from the alpha at the time this action starts to the specified alpha.
|
static AlphaAction |
Actions.fadeIn(float duration)
Transitions from the alpha at the time this action starts to an alpha of 1.
|
static AlphaAction |
Actions.fadeIn(float duration,
Interpolation interpolation)
Transitions from the alpha at the time this action starts to an alpha of 1.
|
static AlphaAction |
Actions.fadeOut(float duration)
Transitions from the alpha at the time this action starts to an alpha of 0.
|
static AlphaAction |
Actions.fadeOut(float duration,
Interpolation interpolation)
Transitions from the alpha at the time this action starts to an alpha of 0.
|