Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

NetworkView.isMine

Switch to Manual
public bool isMine;

Description

Is the network view controlled by this object?

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnNetworkInstantiate(NetworkMessageInfo info) { NetworkView nView = GetComponent<NetworkView>(); if (nView.isMine) Debug.Log("New object instanted by me"); else Debug.Log("New object instantiated by " + info.sender); } }