This is an attribute that can be put on methods of NetworkBehaviour classes to allow them to be invoked on clients from a server.
[ClientRPC] 関数は UNET サーバー上のユーザーが実装したコードによって呼び出されます。そして、対応するクライアント上のオブジェクトに対し起動します。RPC コールの引数はネットワークを通してシリアライズされ、そのため、クライアント関数は、サーバー上の関数と同じ値で起動します。これらの関数は接頭辞 "Rpc" を付ける必要があります。
using UnityEngine; using UnityEngine.Networking;
public class Example : NetworkBehaviour { int counter; [ClientRpc] public void RpcDoMagic(int extra) { Debug.Log ("Magic = " + (123 + extra)); } void Update () { counter += 1; if (counter % 100 == 0 && NetworkServer.active) { RpcDoMagic(counter); } } }
channel | The channel ID which this RPC transmission will use. |