美文网首页
Unity中Input类

Unity中Input类

作者: 困卡 | 来源:发表于2017-03-20 10:57 被阅读0次
public string test;
void Update()
{
//获取鼠标的位置
var input=Input.mousePosition;
//将鼠标位置tostring
test=input.ToString();
}
void OnGUI()
{
//GUILayout.TextArea文本区域
GUILayout.TextArea(test,200);
}

自定义输入

Paste_Image.png Paste_Image.png

移动设备的输入

Paste_Image.png

相关文章

网友评论

      本文标题:Unity中Input类

      本文链接:https://www.haomeiwen.com/subject/psybnttx.html