言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Cursor.SetCursor(Texture2D,CursorMode)

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

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

OnMouseEnterのタイミングでマウスカーソルのテクスチャを変更します

OnMouseExitのタイミングでデフォルトのテクスチャにリセットします。

	var cursorTexture : Texture2D;
	var cursorMode : CursorMode = CursorMode.Auto;
	var hotSpot : Vector2 = Vector2.zero;

	function OnMouseEnter () {
		Cursor.SetCursor(cursorTexture, hotSpot, cursorMode);
	}

	function OnMouseExit () {
		Cursor.SetCursor(null, Vector2.zero, cursorMode);
	}
public static function SetCursor(texture: Texture2D, hotspot: Vector2, cursorMode: CursorMode): void;
public static void SetCursor(Texture2D texture, Vector2 hotspot, CursorMode cursorMode);
public static def SetCursor(texture as Texture2D, hotspot as Vector2, cursorMode as CursorMode) as void

Parameters

texture カーソルで使用するテクスチャ
hotspot ターゲット地点として使用するテクスチャの左上からのオフセット距離(カーソルの境界範囲にある必要があります)
cursorMode プラットフォームがサポートしているハードウェアのカーソル、または強制的にソフトウェアのカーソルを使用するかの設定

Description

使用したいカーソル画像を自由に設定できるカスタムカーソルです