Version: 2023.2
언어: 한국어

설명

Unity raises this event when the editor application is quitting.

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; } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961