Version: 5.4
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.

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