-
Notifications
You must be signed in to change notification settings - Fork 6
DeadReckoningAlgorithm
huggins edited this page May 10, 2023
·
1 revision
Holds enums for the specifying the dead reckoning algorithm that a DIS Entity uses.
public enum EDeadReckoningAlgorithm
{
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 |