Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

EditorGUIUtility.AddCursorRect

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

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.

Close

Cancel

public static function AddCursorRect(position: Rect, mouse: MouseCursor): void;
public static void AddCursorRect(Rect position, MouseCursor mouse);
public static function AddCursorRect(position: Rect, mouse: MouseCursor, controlID: int): void;
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.

function OnGUI()
{
    // show the "Link" cursor when the mouse is hovering over this rectangle.
    EditorGUIUtility.AddCursorRect (Rect(10,10,100,100), MouseCursor.Link);
}
// 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