言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

NetworkView.viewID

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public var viewID: NetworkViewID;
public NetworkViewID viewID;
public viewID as NetworkViewID

Description

The ViewID of this network view.

	function OnNetworkInstantiate (info : NetworkMessageInfo) {
		var networkViews : NetworkView[] = GetComponents(NetworkView);
		Debug.Log("New prefab network instantiated with views - ");
		for (var view : NetworkView in networkViews)
			Debug.Log("- " + view.viewID);
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void OnNetworkInstantiate(NetworkMessageInfo info) {
        NetworkView[] networkViews = GetComponents<NetworkView>();
        Debug.Log("New prefab network instantiated with views - ");
        foreach (NetworkView view in networkViews) {
            Debug.Log("- " + view.viewID);
        }
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def OnNetworkInstantiate(info as NetworkMessageInfo) as void:
		networkViews as (NetworkView) = GetComponents[of NetworkView]()
		Debug.Log('New prefab network instantiated with views - ')
		for view as NetworkView in networkViews:
			Debug.Log(('- ' + view.viewID))