Legacy Documentation: Version 4.6.2
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

NetworkView.stateSynchronization

Switch to Manual
public var stateSynchronization: NetworkStateSynchronization;

Description

The type of NetworkStateSynchronization set for this network view.

It is your repsonsibility to ensure that NetworkView's across all machines use the same reliability method. Do not change state reliability on the fly after state synchronization has already happened.

	function Awake () {
		// Start by switching state synch mode (before any networking is started).
		networkView.stateSynchronization = NetworkStateSynchronization.Unreliable;
	}