SpringPhysics

constructor(stiffness: Int = 1, damping: Int = 10, mass: Double = 1.0, velocity: Double? = null, restSpeed: Double = 0.1, restDelta: Double = 0.01, delay: Duration = Duration.ZERO, repeat: Int = 0, repeatType: RepeatType? = null, repeatDelay: Duration? = null)(source)

Parameters

stiffness

Stiffness of the spring. Higher values will create more sudden movement. (default is 1)

damping

Strength of opposing force. If set to 0, spring will oscillate indefinitely. (default is 10)

mass

Mass of the object. Higher values will result in more lethargic movement. (default is 1)

velocity

Initial velocity of the object

restSpeed

End animation if absolute speed drops below this value and delta is smaller than restDelta. (default is 0.1)

restDelta

End animation if distance is below this value and speed is below restSpeed (default is 0.01)

delay

Delay before the animation starts

repeat

Number of times the animation should repeat

repeatType

Type of the repeat

repeatDelay

Delay between repeats