Version: 2017.1
public void OnNetworkDestroy ();

설명

This is invoked on clients when the server has caused this object to be destroyed.

This can be used as a hook to invoke effects or do client specific cleanup.

using UnityEngine;
using UnityEngine.Networking;

class Bomb : NetworkBehaviour { public override void OnNetworkDestroy() { // play explosion sound } }