mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
hooks are called on initialState too (#1986)
This commit is contained in:
parent
784b626dca
commit
7056d5eb9e
@ -57,7 +57,7 @@ public virtual bool OnSerialize(NetworkWriter writer, bool initialState);
|
||||
public virtual void OnDeserialize(NetworkReader reader, bool initialState);
|
||||
```
|
||||
|
||||
Use the `initialState` flag to differentiate between the first time a game object is serialized and when incremental updates can be sent. The first time a game object is sent to a client, it must include a full state snapshot, but subsequent updates can save on bandwidth by including only incremental changes. Note that SyncVar hook functions are not called when `initialState` is true; they are only called for incremental updates.
|
||||
Use the `initialState` flag to differentiate between the first time a game object is serialized and when incremental updates can be sent. The first time a game object is sent to a client, it must include a full state snapshot, but subsequent updates can save on bandwidth by including only incremental changes.
|
||||
|
||||
If a class has SyncVars, then implementations of these functions are added automatically to the class, meaning that a class that has SyncVars cannot also have custom serialization functions.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user