纳金网
标题:
自定义鼠标形状的代码
[打印本页]
作者:
刀锋狼
时间:
2014-5-30 04:20
标题:
自定义鼠标形状的代码
using UnityEngine;
using System.Collections;
public class Cursor : MonoBehaviour
{
// Use this for initialization
void Start()
{
//在游戏启动时就隐藏系统鼠标指针
Screen.showCursor = false;
}
// Update is called once per frame
void Update()
{
//实时修改自身的坐标,注意GUITexture的位置是以屏幕左下角为(0,0)点,右上角为(1,1)点
transform.position = new Vector3()
{
x = 1 - (Screen.width - Input.mousePosition.x) / Screen.width,
y = 1 - (Screen.height - Input.mousePosition.y) / Screen.height,
};
}
}
复制代码
作者:
hyui
时间:
2014-5-30 05:20
Great, thank you!
作者:
scc172fly
时间:
2014-5-30 07:49
没有自定义啊?贴图都没有,NGUI有这样类似的脚本
作者:
Kadina
时间:
2014-5-30 08:25
happy your sharing
作者:
wucnj
时间:
2014-5-30 13:34
感谢分享!!!
欢迎光临 纳金网 (http://course.narkii.com/club/)
Powered by Discuz! X2.5