KeyframeInterpolationMode

public enum KeyframeInterpolationMode : UInt32, CaseIterable, Codable

Specifies type of interpolation performed between keyframes.

  • Step interpolation with sharp transition in the middle.

    Declaration

    Swift

    case step
  • Linear interpolation between consecutive values.

    Declaration

    Swift

    case linear
  • Smooth interpolation using an arbitrary spline, e.g. Catmull-Rom.

    Declaration

    Swift

    case smooth