-
Notifications
You must be signed in to change notification settings - Fork 20
DISCullingMode
huggins edited this page May 3, 2023
·
3 revisions
Determines what all DIS info should be culled. Allows for updates to happen less frequently for entities that aren't currently important.
enum class EDISCullingMode : uint8
{
None,
CullDeadReckoning,
CullAll
};| Name | Description |
|---|---|
| None | Don't cull any DIS updates. |
| CullDeadReckoning | Cull only dead reckoning updates. |
| CullAll | Cull all DIS updates. Currently only performs dead reckoning culling. |