Companion

Static variables and methods.

object Companion

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
setDefaultAnimatorOptions
Link copied to clipboard

Set default global options for all animator types All newly created animators will have those options applied.

fun setDefaultAnimatorOptions(block: ValueAnimator.() -> Unit)

Set default global options for given animator type. All newly created animators will have those options applied.

fun setDefaultAnimatorOptions(type: CameraAnimatorType, block: ValueAnimator.() -> Unit)
toString
Link copied to clipboard
open override fun toString(): String

Properties

CUBIC_BEZIER_INTERPOLATOR
Link copied to clipboard

Interpolator based on Bezier Curve which is default in v9 version of the SDK

val CUBIC_BEZIER_INTERPOLATOR: Interpolator
DEFAULT_ANIMATION_DURATION_MS
Link copied to clipboard

Default animation duration

const val DEFAULT_ANIMATION_DURATION_MS: Long