unreal.EasingFuncType

class unreal.EasingFuncType

Bases: unreal.EnumBase

An easing type defining how to ease float values.

C++ Source:

  • Module: AnimGraphRuntime

  • File: CommonAnimationTypes.h

CIRCULAR_IN

Circular easing (only in)

Type

8

CIRCULAR_IN_OUT

Circular easing (in and out)

Type

10

CIRCULAR_OUT

Circular easing (only out)

Type

9

CUBIC

Cubic version of the value (only in)

Type

2

CUBIC_IN_OUT

Cubic version of the value (in and out)

Type

4

CUSTOM_CURVE

Custom - based on an optional Curve

Type

14

EXP_IN

Exponential easing (only in)

Type

11

EXP_IN_OUT

Exponential easing (in and out)

Type

13

EXP_OUT

Exponential easing (only out)

Type

12

HERMITE_CUBIC

Easing using a cubic hermite function

Type

5

LINEAR

Linear easing (no change to the value)

Type

0

QUADRATIC_IN_OUT

Quadratic version of the value (in and out)

Type

3

QUARTIC_IN_OUT

Quartic version of the value (in and out)

Type

6

QUINTIC_IN_OUT

Quintic version of the value (in and out)

Type

7

SINUSOIDAL

Easing using a sinus function

Type

1