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

파라미터

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

설명

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);		
	}