public class FadeTransition extends Transition
DEFAULT_FPS, DEFAULT_T, DIR_DOWN, DIR_LEFT, DIR_RIGHT, DIR_UP
Constructor | Description |
---|---|
FadeTransition(TransitionManager transitionManager) |
This constructor creates a FadeTransition with number of frames per second of
Transition.DEFAULT_FPS
and total transition time of Transition.DEFAULT_T milliseconds. |
FadeTransition(TransitionManager transitionManager,
long fps,
long T) |
This constructor creates a FadeTransition with fps number of frames per
second and T total transition time in milliseconds.
|
Modifier and Type | Method | Description |
---|---|---|
void |
setFadeInStart(double percentage) |
Specifies when the fade-in effect is started as a percentage
of the transition total time.
|
void |
setFadeInStop(double percentage) |
Specifies when the fade-in effect is ended as a percentage
of the transition total time.
|
void |
setFadeOutStart(double percentage) |
Specifies when the fade-out effect is started as a percentage
of the transition total time.
|
void |
setFadeOutStop(double percentage) |
Specifies when the fade-out effect is ended as a percentage
of the transition total time.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getFPS, getTotalTransitionTime, setFPS, setTotalTransitionTime, start
public FadeTransition(TransitionManager transitionManager)
Transition.DEFAULT_FPS
and total transition time of Transition.DEFAULT_T
milliseconds. It is similar to
new FadeTransition(transitionManager, Transition.DEFAULT_FPS
, Transition.DEFAULT_T
)transitionManager
- the transition manager to be used to manage transitionspublic FadeTransition(TransitionManager transitionManager, long fps, long T)
transitionManager
- the transition manager to be used to manage transitionsfps
- number of frames per secondT
- the total time the transition effect will take in millisecondspublic void setFadeOutStart(double percentage)
percentage
- is a percentage of the transition total time.public void setFadeOutStop(double percentage)
percentage
- is a percentage of the transition total time.public void setFadeInStart(double percentage)
percentage
- is a percentage of the transition total time.public void setFadeInStop(double percentage)
percentage
- is a percentage of the transition total time.