Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

var isMine: bool;

Description

Is the network view controlled by this object?

	function OnNetworkInstantiate (info : NetworkMessageInfo) {
		if (networkView.isMine)
			Debug.Log("New object instanted by me");
		else
			Debug.Log("New object instantiated by " + info.sender);
	}