-
- All Implemented Interfaces:
public interface AnimationFrameAn interface to contain the information needed for Animations.
-
-
Method Summary
Modifier and Type Method Description abstract StringgetText()The text. abstract UnitsetText(String text)The text. abstract IntegergetFadeIn()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 UnitsetFadeIn(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 IntegergetStay()The time the frame should be shown. abstract UnitsetStay(Integer stay)The time the frame should be shown. abstract IntegergetFadeOut()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 UnitsetFadeOut(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 IntegergetTotalTime()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)
-
-
-
-