Unity - Scripting API: EditorGUIUtility
class in UnityEditor
/
Inherits from:GUIUtility
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.
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Description
Miscellaneous helper stuff for EditorGUI.
Static Properties
| currentViewWidth | The width of the GUI area for the current EditorWindow or other view. This Property should only be accessed within an OnGUI call. |
| editingTextField | Is a text field currently editing text? |
| fieldWidth | The minimum width in pixels reserved for the fields of Editor GUI controls. |
| hierarchyMode | Is the Editor GUI is hierarchy mode? |
| isProSkin | Is the user currently using the pro skin? (Read Only) |
| labelWidth | The width in pixels reserved for labels of Editor GUI controls. |
| pixelsPerPoint | The scale of GUI points relative to screen pixels for the current viewThis value is the number of screen pixels per point of interface space. For instance, 2.0 on retina displays. Note that the value may differ from one view to the next if the views are on monitors with different UI scales. |
| singleLineHeight | Get the height used for a single Editor control such as a one-line EditorGUI.TextField or EditorGUI.Popup. |
| standardVerticalSpacing | Get the height used by default for vertical spacing between controls. |
| systemCopyBuffer | The system copy buffer. |
| textFieldHasSelection | True if a text field currently has focused and the text in it is selected. |
| whiteTexture | Get a white texture. |
| wideMode | Is the Editor GUI currently in wide mode? |
Inherited Members
Static Properties
| hasModalWindow | A global property, which is true if a ModalWindow is being displayed, false otherwise. |
| hotControl | The controlID of the current hot control. |
| keyboardControl | The controlID of the control that has keyboard focus. |
| systemCopyBuffer | Get access to the system-wide clipboard. |
Static Methods
| AlignRectToDevice | Align a local space rectangle to the pixel grid. |
| ExitGUI | Puts the GUI in a state that will prevent all subsequent immediate mode GUI functions from evaluating for the remainder of the GUI loop by throwing an ExitGUIException. |
| GetControlID | Get a unique ID for a control. |
| GetStateObject | Get a state object from a controlID. |
| GUIToScreenPoint | Convert a point from GUI position to screen space. |
| GUIToScreenRect | Convert a rect from GUI position to screen space. |
| QueryStateObject | Get an existing state object from a controlID. |
| RotateAroundPivot | Helper function to rotate the GUI around a point. |
| ScaleAroundPivot | Helper function to scale the GUI around a point. |
| ScreenToGUIPoint | Convert a point from screen space to GUI position. |
| ScreenToGUIRect | Convert a rect from screen space to GUI position. |