Table of Contents

Enum EasingType

Namespace
Goehler.OrbitalCam
Assembly
Goehler.OrbitalCam.Runtime.dll

Easing curve to apply when animating camera movements through the public API.

public enum EasingType

Fields

EaseIn = 1

Accelerates from rest. Quadratic curve (t * t).

EaseInOut = 3

Accelerates then decelerates. Smoothstep curve. Default.

EaseOut = 2

Decelerates to rest. Inverse-quadratic curve.

Linear = 0

Constant velocity from start to end.