This function is called when the behaviour becomes disabled () or inactive.
function OnDisable () { print("script was removed"); }
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void OnDisable() { print("script was removed"); } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def OnDisable() as void: print('script was removed')