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 = 1Accelerates from rest. Quadratic curve (
t * t).EaseInOut = 3Accelerates then decelerates. Smoothstep curve. Default.
EaseOut = 2Decelerates to rest. Inverse-quadratic curve.
Linear = 0Constant velocity from start to end.