C# Class UnityEditor.EditorApplication

Show file Open project: CarlosHBC/UnityDecompiled Class Usage Examples

Public Properties

Property Type Description
delayCall CallbackFunction
hierarchyWindowChanged CallbackFunction
hierarchyWindowItemOnGUI HierarchyWindowItemCallback
modifierKeysChanged CallbackFunction
playmodeStateChanged CallbackFunction
projectWindowChanged CallbackFunction
projectWindowItemOnGUI ProjectWindowItemCallback
searchChanged CallbackFunction
update CallbackFunction

Private Methods

Method Description
Beep ( ) : void
CallDelayed ( CallbackFunction function, float timeFromNow ) : void

Property Details

delayCall public static property

Delegate which is called once after all inspectors update.

public static CallbackFunction delayCall
return CallbackFunction

hierarchyWindowChanged public static property

A 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.

public static CallbackFunction hierarchyWindowChanged
return CallbackFunction

hierarchyWindowItemOnGUI public static property

Delegate for OnGUI events for every visible list item in the HierarchyWindow.

public static HierarchyWindowItemCallback hierarchyWindowItemOnGUI
return HierarchyWindowItemCallback

modifierKeysChanged public static property

Delegate for changed keyboard modifier keys.

public static CallbackFunction modifierKeysChanged
return CallbackFunction

playmodeStateChanged public static property

Delegate for play mode state changes.

public static CallbackFunction playmodeStateChanged
return CallbackFunction

projectWindowChanged public static property

Callback raised whenever the state of the Project window changes.

public static CallbackFunction projectWindowChanged
return CallbackFunction

projectWindowItemOnGUI public static property

Delegate for OnGUI events for every visible list item in the ProjectWindow.

public static ProjectWindowItemCallback projectWindowItemOnGUI
return ProjectWindowItemCallback

searchChanged public static property

Callback raised whenever the contents of a window's search box are changed.

public static CallbackFunction searchChanged
return CallbackFunction

update public static property

Delegate for generic updates.

public static CallbackFunction update
return CallbackFunction