Interface SceneMovement
-
- All Implemented Interfaces:
public interface SceneMovement
-
-
Method Summary
Modifier and Type Method Description abstract DurationgetDuration()How long the movement should take. abstract UnitsetDuration(Duration duration)How long the movement should take. abstract Function1<Float, Float>getEase()Easing function to use for the movement. abstract UnitsetEase(Function1<Float, Float> ease)Easing function to use for the movement. abstract DurationgetStartDelay()abstract UnitsetStartDelay(Duration startDelay)abstract DurationgetEndDelay()abstract UnitsetEndDelay(Duration endDelay)-
-
Method Detail
-
getDuration
abstract Duration getDuration()
How long the movement should take.
-
setDuration
abstract Unit setDuration(Duration duration)
How long the movement should take.
-
setEase
abstract Unit setEase(Function1<Float, Float> ease)
Easing function to use for the movement.
-
getStartDelay
abstract Duration getStartDelay()
-
setStartDelay
abstract Unit setStartDelay(Duration startDelay)
-
getEndDelay
abstract Duration getEndDelay()
-
setEndDelay
abstract Unit setEndDelay(Duration endDelay)
-
-
-
-