Table of Contents

Enum FixedCurveMode

Namespace
FixedMathSharp
Assembly
FixedMathSharp.dll

Specifies the interpolation method used when evaluating a FixedCurve.

public enum FixedCurveMode : byte

Fields

Cubic = 3

Cubic interpolation for smoother curves using tangents.

Linear = 0

Linear interpolation between keyframes.

Smooth = 2

Smooth interpolation using a cosine function (SmoothStep).

Step = 1

Step interpolation, instantly jumping between keyframe values.