Enum SyncFlags
Synchronization flags.
Namespace: LiteEntitySystem
Assembly: LiteEntitySystem.dll
Syntax
[Flags]
public enum SyncFlags : byte
Fields
Name | Description |
---|---|
AlwaysRollback | Always rollback value even when entity is not owned useful for enemy health and damage prediction |
Interpolated | Is value interpolated inside VisualUpdate and in LagCompensation checks best use for Position, Rotation |
LagCompensated | Is value lag compensated (returned in history) when EnableLagCompensation called for hit checks on server and on client in rollback state |
NeverRollBack | Never rollback value even when entity is owned |
None | |
OnlyForOtherPlayers | Value synchronized only for non owners |
OnlyForOwner | Value synchronized only for owner |