unreal.NetworkSmoothingMode

class unreal.NetworkSmoothingMode

Bases: EnumBase

Smoothing approach used by network interpolation for Characters.

C++ Source:

  • Module: Engine

  • File: EngineTypes.h

DISABLED: NetworkSmoothingMode

No smoothing, only change position as network position updates are received.

Type:

0

EXPONENTIAL: NetworkSmoothingMode

Exponential. Faster as you are further from target.

Type:

2

LINEAR: NetworkSmoothingMode

Linear interpolation from source to target.

Type:

1