unreal.NetworkSmoothingMode¶
- class unreal.NetworkSmoothingMode¶
Bases:
EnumBaseSmoothing approach used by network interpolation for Characters.
C++ Source:
Module: Engine
File: EngineTypes.h
- DISABLED: NetworkSmoothingMode = Ellipsis¶
No smoothing, only change position as network position updates are received.
- Type:
0
- EXPONENTIAL: NetworkSmoothingMode = Ellipsis¶
Exponential. Faster as you are further from target.
- Type:
2
- LINEAR: NetworkSmoothingMode = Ellipsis¶
Linear interpolation from source to target.
- Type:
1