Version: 2017.3

説明

Event that is raised whenever the Editor's pause state changes.

Add an event handler to this event to receive a notification that the pause state has changed, as well as information about the state it has changed into.

Note that the Editor may be paused or unpaused in both edit mode and play mode, so you should test isPlaying inside your event handler if you need to discriminate between these two conditions.

The following example script logs the Editor's pause state to the console whenever if changes. Copy it into a file called PauseStateChangedExample.cs and put it in a folder called Editor.

using UnityEngine;
using UnityEditor;

// ensure class initializer is called whenever scripts recompile [InitializeOnLoadAttribute] public static class PauseStateChangedExample { // register an event handler when the class is initialized static PauseStateChangedExample() { EditorApplication.pauseStateChanged += LogPauseState; }

private static void LogPauseState(PauseState state) { Debug.Log(state); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961