Skip to content

DeadReckoningAlgorithm

huggins edited this page May 3, 2023 · 3 revisions

Dead Reckoning Algorithm

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
};

Values

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

Clone this wiki locally