Navigation
API > API/Runtime > API/Runtime/Engine
Describes rules for network replicating a vector efficiently
| Name | EVectorQuantization |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/ReplicatedState.h |
| Include Path | #include "Engine/ReplicatedState.h" |
Syntax
enum EVectorQuantization
{
RoundWholeNumber,
RoundOneDecimal,
RoundTwoDecimals,
}
Values
| Name | Remarks |
|---|---|
| RoundWholeNumber | Each vector component will be rounded to the nearest whole number. |
| RoundOneDecimal | Each vector component will be rounded, preserving one decimal place. |
| RoundTwoDecimals | Each vector component will be rounded, preserving two decimal places. |