Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

NetworkBehaviour.OnNetworkDestroy

Switch to Manual
public function OnNetworkDestroy(): void;

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.

public override void OnNetworkDestroy()
{
	// play explosion sound
}