Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

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

EditorGUIUtility.AddCursorRect

Switch to Manual
public static function AddCursorRect(position: Rect, mouse: MouseCursor): void;
public static function AddCursorRect(position: Rect, mouse: MouseCursor, controlID: int): void;

Parameters

positionThe rectangle the control should be shown within.
mouseThe mouse cursor to use.
controlIDID of a target control.

Description

Add a custom mouse pointer to a control.

	function OnGUI()
	{
		// show the "Link" cursor when the mouse is howering over this rectangle.
		EditorGUIUtility.AddCursorRect (Rect(10,10,100,100), MouseCursor.Link);		
	}