1. 程式人生 > >unity5.0中,更改游標的形狀。

unity5.0中,更改游標的形狀。

unity中,控制滑鼠的形狀如何實現。

(1)思路:在游標的位置放上你想變換的圖片。

(2)using UnityEngine;
    using System.Collections;

    public class ChangeMouse : MonoBehaviour {


    public Texture2D cursorTexture;

    public CursorMode cursormode = CursorMode.Auto;

    public Vector2 hotSpot = Vector2.zero;
 
 void Start () {
        Cursor.SetCursor(cursorTexture,hotSpot, cursormode);   
            }

(3)將此程式碼附加到camera上去,千萬要記得將texture的texture type選擇成Sprite

   (2D and UI),否則渲染出來的紋理是透明的。

(4)最後記得在檢視面板中 選擇你要加的cursor texture