-
Notifications
You must be signed in to change notification settings - Fork 4
DISCullingMode
huggins edited this page May 10, 2023
·
1 revision
Determines what all DIS info should be culled. Allows for updates to happen less frequently for entities that aren't currently important.
public enum EDISCullingMode
{
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. |