Version: 2022.3
言語: 日本語
public static bool isPlaying ;

説明

Whether the Editor is in Play mode.

Returns true if the Editor is in Play mode. Setting isPlaying delays the result until after all script code has completed for this frame. This also returns true if the Editor is paused.

See Also: isPaused, isPlayingOrWillChangePlaymode.

using UnityEngine;
using UnityEditor;

// The following is a simple example where EditorApplication.isPlaying is watched to // report whether the Editor is in Play mode.

public class EditorPlaying : EditorWindow { [MenuItem("Examples/EditorApplication.isPlaying demo")] static void Init() { EditorWindow window = GetWindow(typeof(EditorPlaying)); window.position = new Rect(100, 100, 150, 50); window.Show(); }

void OnGUI() { if (EditorApplication.isPlaying) { EditorGUILayout.LabelField("Playing"); } else { EditorGUILayout.LabelField("Not playing"); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961