isCompiling
Is editor currently compiling scripts? (Read Only)
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEditor
- Assembly: UnityEditor
public static bool isCompiling { get; }
Remarks

Editor Window that tells you if Unity is compiling scripts.
Examples
// 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(); }}