-
- All Implemented Interfaces:
public interface AnimationFrame
An interface to contain the information needed for Animations.
-
-
Method Summary
Modifier and Type Method Description abstract String
getText()
The text. abstract Unit
setText(String text)
The text. abstract Integer
getFadeIn()
If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade onto the screen. abstract Unit
setFadeIn(Integer fadeIn)
If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade onto the screen. abstract Integer
getStay()
The time the frame should be shown. abstract Unit
setStay(Integer stay)
The time the frame should be shown. abstract Integer
getFadeOut()
If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade off of the screen. abstract Unit
setFadeOut(Integer fadeOut)
If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade off of the screen. abstract Integer
getTotalTime()
The combined time the frame should stay on the screen. -
-
Method Detail
-
getFadeIn
abstract Integer getFadeIn()
If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade onto the screen.
-
setFadeIn
abstract Unit setFadeIn(Integer fadeIn)
If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade onto the screen.
-
getFadeOut
abstract Integer getFadeOut()
If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade off of the screen.
-
setFadeOut
abstract Unit setFadeOut(Integer fadeOut)
If the frame is used in a title or subtitle, then this will be the time it takes for the title to fade off of the screen.
-
getTotalTime
abstract Integer getTotalTime()
The combined time the frame should stay on the screen. (A combination of .fadeIn, .stay, .fadeOut)
-
-
-
-