-
Notifications
You must be signed in to change notification settings - Fork 20
DeadReckoningAlgorithm
huggins edited this page May 3, 2023
·
3 revisions
Holds enums for the specifying the dead reckoning algorithm that a DIS Entity uses.
enum class EDeadReckoningAlgorithm : uint8
{
Other,
Static,
FPW,
RPW,
RVW,
FVW,
FPB,
RPB,
RVB,
FVB
};| Name | Description |
|---|---|
| Other | Using a custom DR algorithm. |
| Static | Static. Entity does not move. |
| FPW | Fixed Position World |
| RPW | Rotation Position World |
| RVW | Rotation Velocity World |
| FVW | Fixed Velocity World |
| FPB | Fixed Position Body |
| RPB | Rotation Position Body |
| RVB | Rotation Velocity Body |
| FVB | Fixed Velocity Body |