Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorApplication.isCompiling

public static bool isCompiling;

Description

Is editor currently compiling scripts? (Read Only)


Editor Window that tells you if Unity is compiling scripts.

// Small example that shows when scripts are being compiled.

using UnityEditor; using UnityEngine;

public class isCompilingExample : EditorWindow { [MenuItem("Examples/Is compiling?")] static void Init() { EditorWindow window = GetWindowWithRect(typeof(isCompilingExample), new Rect(0, 0, 200, 200)); window.Show(); }

void OnGUI() { EditorGUILayout.LabelField("Compiling:", EditorApplication.isCompiling ? "Yes" : "No");

this.Repaint(); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答