unreal.RichCurveExtrapolation

class unreal.RichCurveExtrapolation

Bases: EnumBase

Enumerates extrapolation options.

C++ Source:

  • Module: Engine

  • File: RealCurve.h

RCCE_CONSTANT: RichCurveExtrapolation

Use a constant value for extrapolation

Type:

4

RCCE_CYCLE: RichCurveExtrapolation

Repeat the curve without an offset.

Type:

0

RCCE_CYCLE_WITH_OFFSET: RichCurveExtrapolation

Repeat the curve with an offset relative to the first or last key’s value.

Type:

1

RCCE_LINEAR: RichCurveExtrapolation

Use a linearly increasing value for extrapolation.

Type:

3

RCCE_NONE: RichCurveExtrapolation

No Extrapolation

Type:

5

RCCE_OSCILLATE: RichCurveExtrapolation

Sinusoidally extrapolate.

Type:

2