Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#
Method group is Obsolete

NetworkBehaviour.OnNetworkDestroy

Obsolete public void OnNetworkDestroy();

Description

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 } }

Did you find this page useful? Please give it a rating: