Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

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

EditorApplication

class in UnityEditor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Main Application class.

Static Variables

applicationContentsPathPath to the Unity editor contents folder. (Read Only)
applicationPathReturns the path to the Unity editor application. (Read Only)
delayCallDelegate which is called once after all inspectors update.
hierarchyWindowChangedA callback to be raised when an object in the hierarchy changes.Each time an object is (or a group of objects are) created, renamed, parented, unparented or destroyed this callback is raised.
hierarchyWindowItemOnGUIDelegate for OnGUI events for every visible list item in the HierarchyWindow.
isCompilingIs editor currently compiling scripts? (Read Only)
isPausedIs editor currently paused?
isPlayingIs editor currently in play mode?
isPlayingOrWillChangePlaymodeIs editor either currently in play mode, or about to switch to it? (Read Only)
isRemoteConnectedIs editor currently connected to Unity Remote 4 client app.
isUpdatingThis property is true if the Editor is currently refreshing the AssetDatabase. During this time, the editor checks to see if any files have changed, whether they need to be reimported, and reimports them. (Read Only)
modifierKeysChangedDelegate for changed keyboard modifier keys.
playmodeStateChangedDelegate for play mode state changes.
projectWindowChangedCallback raised whenever the state of the Project window changes.
projectWindowItemOnGUIDelegate for OnGUI events for every visible list item in the ProjectWindow.
searchChangedCallback raised whenever the contents of a window's search box are changed.
timeSinceStartupThe time since the editor was started. (Read Only)
updateDelegate for generic updates.

Static Functions

BeepPlays system beep sound.
DirtyHierarchyWindowSortingSet the hierarchy sorting method as dirty.
ExecuteMenuItemInvokes the menu item in the specified path.
ExitExit the Unity editor application.
LoadLevelAdditiveAsyncInPlayModeLoad the given level additively in play mode asynchronously
LoadLevelAdditiveInPlayModeLoad the given level additively in play mode.
LoadLevelAsyncInPlayModeLoad the given level in play mode asynchronously.
LoadLevelInPlayModeLoad the given level in play mode.
LockReloadAssembliesPrevents loading of assemblies when it is inconvenient.
OpenProjectOpen another project.
RepaintHierarchyWindowCan be used to ensure repaint of the HierarchyWindow.
RepaintProjectWindowCan be used to ensure repaint of the ProjectWindow.
SaveAssetsSaves all serializable assets that have not yet been written to disk (eg. Materials).
StepPerform a single frame step.
UnlockReloadAssembliesMust be called after LockReloadAssemblies, to reenable loading of assemblies.

Delegates

CallbackFunctionDelegate to be called from EditorApplication callbacks.
HierarchyWindowItemCallbackDelegate to be called for every visible list item in the HierarchyWindow on every OnGUI event.
ProjectWindowItemCallbackDelegate to be called for every visible list item in the ProjectWindow on every OnGUI event.