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

スクリプト言語

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

Network.AllocateViewID

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

public static function AllocateViewID(): NetworkViewID;
public static NetworkViewID AllocateViewID();
public static def AllocateViewID() as NetworkViewID

Description

次に使用可能なネットワークのView ID 割り当てます(予約)

This number can then be assigned to the network view of an instantiated object. The example below demonstrates a simple method to do this. Note that for this to work there must be a NetworkView attached to the object which has this script and it must have the script as its observed property. There must be a Cube prefab present also with a NetworkView which watches something (like the Transform of the Cube). The cubePrefab variable in the script must be set to that cube prefab. This is the simplest method of using AllocateViewID intelligently. This get more complicated if there were more than one NetworkView attached to the Cube which is to be instantiated.

	var cubePrefab : Transform;
	function OnGUI () {
		if (GUILayout.Button("SpawnBox")) {
			var viewID = Network.AllocateViewID();
			networkView.RPC("SpawnBox", 
							RPCMode.AllBuffered, 
							viewID, 
							transform.position);	
		}
	}

	@RPC
	function SpawnBox (viewID : NetworkViewID, location : Vector3) {
		// Instantate the prefab locally
		var clone : Transform;
		clone = Instantiate(cubePrefab, location, Quaternion.identity) as Transform;
		var nView : NetworkView;
		nView = clone.GetComponent(NetworkView);
		nView.viewID = viewID;
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public Transform cubePrefab;
    void OnGUI() {
        if (GUILayout.Button("SpawnBox")) {
            NetworkViewID viewID = Network.AllocateViewID();
            networkView.RPC("SpawnBox", RPCMode.AllBuffered, viewID, transform.position);
        }
    }
    [RPC]
    void SpawnBox(NetworkViewID viewID, Vector3 location) {
        Transform clone;
        clone = Instantiate(cubePrefab, location, Quaternion.identity) as Transform as Transform;
        NetworkView nView;
        nView = clone.GetComponent<NetworkView>();
        nView.viewID = viewID;
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public cubePrefab as Transform

	def OnGUI() as void:
		if GUILayout.Button('SpawnBox'):
			viewID as NetworkViewID = Network.AllocateViewID()
			networkView.RPC('SpawnBox', RPCMode.AllBuffered, viewID, transform.position)

	[RPC]
	def SpawnBox(viewID as NetworkViewID, location as Vector3) as void:
		clone as Transform
		clone = ((Instantiate(cubePrefab, location, Quaternion.identity) as Transform) as Transform)
		nView as NetworkView
		nView = clone.GetComponent[of NetworkView]()
		nView.viewID = viewID