Version: 2017.2
Method group is Obsolete

NetworkView.stateSynchronization

Switch to Manual
Obsolete public NetworkStateSynchronization stateSynchronization ;

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.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Awake() { GetComponent<NetworkView>().stateSynchronization = NetworkStateSynchronization.Unreliable; } }