Version: 5.4

SyncEventAttribute

class in UnityEngine.Networking

マニュアルに切り替える

説明

これは、サーバー上で呼び出されたイベントがある場合に、クライアント上で実行を NetworkBehaviour クラス内にあるイベントとして許可するための属性です。

[SyncEvent] events are called by user code on UNET servers, and then invoked on corresponding client objects on clients connected to the server. The arguments to the Event call are seriialized across the network, so that the client event is invoked with the same values as the function on the server. These events must begin with the prefix "Event".

using UnityEngine;
using UnityEngine.Networking;

public class DamageClass : NetworkBehaviour { public delegate void TakeDamageDelegate( int amount, float dir );

[SyncEvent] public event TakeDamageDelegate EventTakeDamage; [Command] public void CmdDoMe( int val ) { EventTakeDamage( val, 1.0f ); } }

public class Other : NetworkBehaviour { public DamageClass damager; int health = 100; void Start( ) { if( NetworkClient.active ) damager.EventTakeDamage += TakeDamage; } public void TakeDamage( int amount, float dir ) { health -= amount; } }

SyncEvents allow networked actions to be propagated to other scripts attached to the object. In the example above, the Other class registers for the TakeDamage event on the DamageClass. When the event happens on the DamageClass on the server, the TakeDamage() method will be invoked on the Other class on the client object. This allows modular network aware systems to be created, that can be extended by new scripts that respond to the events generated by them.

変数

channelThe UNET QoS channel that this event should be sent on.