Removed YouTube link. Links are changing. (#1957)

This commit is contained in:
FirstGearGames 2020-06-03 10:28:52 -04:00 committed by GitHub
parent 6f6c8b9d7e
commit 09e01fa818
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,5 @@
# Data types # Data types
[![built in data types video tutorial](../images/video_tutorial.png)](https://www.youtube.com/watch?v=DIIeGYAawY0&list=PLkx8oFug638oBYF5EOwsSS-gOVBXj1dkP&index=9)
The client and server can pass data to each other via [Remote methods](Communications/RemoteActions.md), [State Synchronization](Sync/index.md) or via [Network Messages](Communications/NetworkMessages.md) The client and server can pass data to each other via [Remote methods](Communications/RemoteActions.md), [State Synchronization](Sync/index.md) or via [Network Messages](Communications/NetworkMessages.md)
Mirror supports a number of data types you can use with these, including: Mirror supports a number of data types you can use with these, including:
@ -19,8 +17,6 @@ Mirror supports a number of data types you can use with these, including:
## Custom Data Types ## Custom Data Types
[![built in data types video tutorial](../images/video_tutorial.png)](https://www.youtube.com/watch?v=svXHy2TGaS8&list=PLkx8oFug638oBYF5EOwsSS-gOVBXj1dkP&index=10)
Sometimes you don't want mirror to generate serialization for your own types. For example, instead of serializing quest data, you may want to serialize just the quest id, and the receiver can look up the quest by id in a predefined list. Sometimes you don't want mirror to generate serialization for your own types. For example, instead of serializing quest data, you may want to serialize just the quest id, and the receiver can look up the quest by id in a predefined list.
Sometimes you may want to serialize data which uses a different type not supported by Mirror, such as DateTime or System.Uri Sometimes you may want to serialize data which uses a different type not supported by Mirror, such as DateTime or System.Uri