Community:Synchronization: Difference between revisions
m (Usr 8ee44c1a-f905-4e08-bb61-e1cd34e09fc0 moved page Synchronization to Community:Synchronization: Moved to Community namespace; not official VRChat, Inc. content.) |
(Added stub+community noticebox; category:guides. Polished up the article a bit.) |
||
Line 1: | Line 1: | ||
{{Noticebox/Community}}{{Stub|Please expand and proofread this article, using the VRChat Wiki [[VRCWiki:Manual of Style|Manual of Style]].}} | |||
Synchronization | ''Synchronization''', also known as "sync" or "syncing" is a component of all [[Udon]] Behaviours that controls how data is sent over the network<ref>[https://creators.vrchat.com/worlds/udon/networking Networking] on ''docs.vrchat.com''; retrieved November 26, 2024.</ref> to other players. The type of synchronization can be changed with a drop down menu on the Udon Behaviour. | ||
Synchronization has three modes: '''continuous''', '''manual''', and '''none'''. | |||
==Continuous== | |||
Continuous mode should be used for small, frequently update values, such as the position of a moving object. This mode only takes the latest value stored in the object, and may skip over older values in order to get the newest ones. | Continuous mode should be used for small, frequently update values, such as the position of a moving object. This mode only takes the latest value stored in the object, and may skip over older values in order to get the newest ones. | ||
==Manual== | |||
Manual mode should be used for infrequently updated, important values, such as the score in a game. It will not skip over values like Continuous mode does. | Manual mode should be used for infrequently updated, important values, such as the score in a game. It will not skip over values like Continuous mode does. | ||
==No synchronization== | |||
None prevents an Udon Behaviour from interacting with anything over the network. | None prevents an Udon Behaviour from interacting with anything over the network. | ||
== Performance == | == Performance == | ||
Using any synchronization mode except '''None''' has a performance impact on worlds. This is because the world has to continuously check to see if the values inside the Udon Behaviour have changed. Even if the Udon Behaviour has no stored values in it, the world will still continuously use resources to check it. Set all synchronization modes in your Udon Behaviours to '''None''', if they are not using network functions, in order to prevent this and lower the performance cost of running your world. | Using any synchronization mode except '''None''' has a performance impact on worlds. This is because the world has to continuously check to see if the values inside the Udon Behaviour have changed. Even if the Udon Behaviour has no stored values in it, the world will still continuously use resources to check it. Set all synchronization modes in your Udon Behaviours to '''None''', if they are not using network functions, in order to prevent this and lower the performance cost of running your world. | ||
==Official resources== | |||
* {{VRC link|https://creators.vrchat.com/worlds/udon/networking/|Networking}} on ''docs.vrchat.com'' | |||
* [https://www.youtube.com/watch?v=Mb6ZYBEhxiI VRChat Udon - What is Networking?] published by VRChat on ''YouTube'' | |||
==See also== | |||
* [[Udon]] | |||
==References== | |||
[[Category:Guides]] |
Revision as of 23:36, 26 November 2024
[Reason: Please expand and proofread this article, using the VRChat Wiki Manual of Style.]
Synchronization', also known as "sync" or "syncing" is a component of all Udon Behaviours that controls how data is sent over the network[1] to other players. The type of synchronization can be changed with a drop down menu on the Udon Behaviour.
Synchronization has three modes: continuous, manual, and none.
Continuous
Continuous mode should be used for small, frequently update values, such as the position of a moving object. This mode only takes the latest value stored in the object, and may skip over older values in order to get the newest ones.
Manual
Manual mode should be used for infrequently updated, important values, such as the score in a game. It will not skip over values like Continuous mode does.
No synchronization
None prevents an Udon Behaviour from interacting with anything over the network.
Performance
Using any synchronization mode except None has a performance impact on worlds. This is because the world has to continuously check to see if the values inside the Udon Behaviour have changed. Even if the Udon Behaviour has no stored values in it, the world will still continuously use resources to check it. Set all synchronization modes in your Udon Behaviours to None, if they are not using network functions, in order to prevent this and lower the performance cost of running your world.
Official resources
- Networking on docs.vrchat.com
- VRChat Udon - What is Networking? published by VRChat on YouTube
See also
References
- ↑ Networking on docs.vrchat.com; retrieved November 26, 2024.