-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
struct CNetObjectEx_GameDataPrediction
{
int m_PredictionMask;
};In 0.8, it should be merged as part of CNetObj_GameData.
It could enable and disable certain predictions through bitwise operation masks
example:
enum
{
NETPREDICTION_HOOK = 1 << 0,
NETPREDICTION_MOVE = 1 << 1,
NETPREDICTION_JUMP = 1 << 2,
NETPREDICTION_CHAR_COLLISION = 1 << 3
};Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request