Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

EditorApplication.isUpdating

Switch to Manual
public static var isUpdating: bool;

Description

Is editor currently updating? (Read Only)

	// Simple editor Script that lets you create a new scene if editor is nmot updating.
	
	import UnityEditor;
	
	@MenuItem("Example/New Scene while not updating")
	static function EditorPlaying() {
		if(!EditorApplication.isUpdating) {
			EditorApplication.NewScene();
		}
	}