Legacy Documentation: Version 5.5
LanguageEnglish
  • C#
  • JS

Script language

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

EditorGUIUtility.AddCursorRect

public static void AddCursorRect(Rect position, MouseCursor mouse);
public static void AddCursorRect(Rect position, MouseCursor mouse, int controlID);

Parameters

position The rectangle the control should be shown within.
mouse The mouse cursor to use.
controlID ID of a target control.

Description

Add a custom mouse pointer to a control.

// Create a small window that has a color box in it.
// Hovering over it causes a Zoom mouse cursor to appear.  (The window is not
// zoomed however.)
using UnityEngine;
using UnityEditor;

public class AddCursorRectExample : EditorWindow { [MenuItem ("Examples/AddCursorRect Example")] static void addCursorRectExample () { AddCursorRectExample window = EditorWindow.GetWindowWithRect<AddCursorRectExample> (new Rect(0,0,180,80)); window.Show(); }

void OnGUI () { EditorGUI.DrawRect(new Rect(10,10, 160, 60), new Color(0.5f, 0.5f, 0.85f)); EditorGUI.DrawRect(new Rect(20,20, 140, 40), new Color(0.9f, 0.9f, 0.9f)); EditorGUIUtility.AddCursorRect (new Rect(20,20,140,40), MouseCursor.Zoom); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961