Enum FixedCurveMode
- Namespace
- FixedMathSharp
- Assembly
- FixedMathSharp.dll
Specifies the interpolation method used when evaluating a FixedCurve.
public enum FixedCurveMode : byte
Fields
Cubic = 3Cubic interpolation for smoother curves using tangents.
Linear = 0Linear interpolation between keyframes.
Smooth = 2Smooth interpolation using a cosine function (SmoothStep).
Step = 1Step interpolation, instantly jumping between keyframe values.