unreal.RichCurveExtrapolation

class unreal.RichCurveExtrapolation

Bases: unreal.EnumBase

Enumerates extrapolation options.

C++ Source:

  • Module: Engine

  • File: RealCurve.h

RCCE_CONSTANT

Use a constant value for extrapolation

Type

4

RCCE_CYCLE

Repeat the curve without an offset.

Type

0

RCCE_CYCLE_WITH_OFFSET

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

Type

1

RCCE_LINEAR

Use a linearly increasing value for extrapolation.

Type

3

RCCE_NONE

No Extrapolation

Type

5

RCCE_OSCILLATE

Sinusoidally extrapolate.

Type

2