EditorGUIUtility.IconSizeScope
Disposable scope helper for EditorGUIUtility.GetIconSize / EditorGUIUtility.SetIconSize.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Class
- Namespace: UnityEditor
- Assembly: UnityEditor.CoreModule
- Inherits from: Scope
- Implements: IDisposable
public class EditorGUIUtility.IconSizeScope : GUI.Scope, IDisposable
Remarks
Set icons rendered as part of [[GUIContent], and within this scope, to render at a specific size.
Additional Resources: EditorGUIUtility.GetIconSize. Additional Resources: EditorGUIUtility.SetIconSize.
Examples
using UnityEngine;using UnityEditor;public class ExampleClass : MonoBehaviour{ void ExampleMethod() { var myIconSize = new Vector2(16, 16); using (new EditorGUIUtility.IconSizeScope(myIconSize)) { // Block of code that renders icons as part of GUIContent // Icons rendered here use myIconSize } // Here, the code now reverts to original icon size }}
Constructors
Constructor | Description |
|---|---|
| IconSizeScope(UnityEngine.Vector2) | Begin an IconSizeScope. |