quitting
Unity raises this event when the Player application is quitting.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Event
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static event Action quitting
Remarks
Add an event handler to this event to receive a notification that the application is quitting.
Notes: The event is raised when the quitting process cannot be cancelled. Examples of when this event is not raised are: when the Player is forced to quit or if there is a crash. is invoked when exiting Play mode.
Application.quittingApplication.quittingAndroid: When an Android application is paused, the event doesn't get detected. This is because in the paused state, the is no longer visible. As an alternative approach, consider using OnApplicationFocus(bool) or OnApplicationPause(bool). is called when the application loses or gains focus. is called when the application pauses on losing focus or resumes on regaining focus.
Application.quittingactivityOnApplicationFocus(bool)OnApplicationPause(bool)UWP: On UWP apps, there's no application quit event; therefore, consider using event when equals false.
OnApplicationFocusfocusStatusTo prevent the Player application from quitting, refer to the Application.wantsToQuit event.
Additional Resources: The activity lifecycle
using UnityEngine;public class PlayerQuitExample{ static void Quit() { Debug.Log("Quitting the Player"); } [RuntimeInitializeOnLoadMethod] static void RunOnStart() { Application.quitting += Quit; }}
Additional Resources: Application.wantsToQuit.