Update index.md

Typo found in documentation, OnDeSerialize -> OnDeserialize
This commit is contained in:
gestewa 2019-11-24 13:59:17 -08:00 committed by GitHub
parent fad50818bf
commit 2f1458f3ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ public virtual bool OnSerialize(NetworkWriter writer, bool initialState);
```
```cs
public virtual void OnDeSerialize(NetworkReader reader, 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.