Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


quitting

Unity raises this event when the editor application is quitting.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Event
  • Namespace: UnityEditor
  • Assembly: UnityEditor.CoreModule
public static event Action quitting

Remarks

Add an event handler to this event to receive a notification that the application is quitting.
Note that this will not fire if the Editor is forced to quit or if there is a crash. This event is raised when the quitting process cannot be cancelled.
To prevent the EditorApplication from quitting look at the EditorApplication.wantsToQuit event.
using UnityEngine;using UnityEditor;// Ensure class initializer is called whenever scripts recompile[InitializeOnLoad]public class EditorQuitExample{ static void Quit() { Debug.Log("Quitting the Editor"); } static EditorQuitExample() { EditorApplication.quitting += Quit; }}
Additional Resources: EditorApplication.wantsToQuit.