Merge pull request #1313 from FirstGearGames/patch-7

Changedvideo link to video within playlist.
This commit is contained in:
MrGadget 2019-12-16 17:30:43 -05:00 committed by GitHub
commit f09b06584e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
# SyncVars
[![SyncVar video tutorial](../../images/video_tutorial.png)](https://www.youtube.com/watch?v=T7AoozedYfI)
[![SyncVar video tutorial](../../images/video_tutorial.png)](https://www.youtube.com/watch?v=T7AoozedYfI&list=PLkx8oFug638oBYF5EOwsSS-gOVBXj1dkP&index=5)
SyncVars are properties of classes that inherit from NetworkBehaviour, which are synchronized from the server to clients. When a game object is spawned, or a new player joins a game in progress, they are sent the latest state of all SyncVars on networked objects that are visible to them. Use the `SyncVar` custom attribute to specify which variables in your script you want to synchronize.