Esta función es llamada cuando el MonoBehaviour será destruido.
OnDestroy solamente será llamada en game objects que han sido previamente inactivos.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnDestroy() { print("Script was destroyed"); } }
OnDestroy no puede ser una co-routine.