Обновляется ли редактор в данный момент? (только чтение)
// Simple editor Script that lets you create a new scene if editor is not updating. import UnityEditor; @MenuItem("Example/New Scene while not updating") static function EditorPlaying() { if(!EditorApplication.isUpdating) { EditorApplication.NewScene(); } }
//using UnityEditor;
public class NewSceneWhileNotUpdating {
// Simple editor Script that lets you create a new // scene if editor is not updating.
[MenuItem("Example/New Scene while not updating")] static void EditorPlaying() { if(!EditorApplication.isUpdating) { EditorApplication.NewScene(); } } }