Screen.showCursor = false;
Screen.lockCursor = true;
EditorGUIUtility.AddCursorRect (Rect(10,10,100,100), MouseCursor.Link);
EditorGUIUtility.AddCursorRect (Rect(10,10,100,100), MouseCursor.Link);
这一句和Screen.showCursor = false;这个是完全不一样的。
首先Screen.showCursor只是隐藏和显示鼠标;
而AddCursorRect 却是用在编辑器里的,只要是用来修改你编辑时的鼠标的样式,和运行时没有任何关系。
MouseCursor.Link这个是鼠标样式,你现在的是链接样式。