This function is called when the scriptable object goes out of scope.
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')