码迷,mamicode.com
首页 > 其他好文 > 详细

获取点击坐标(脚本代码记录)

时间:2014-11-22 00:43:11      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   os   on   div   log   代码   as   

    RaycastHit hit;
    Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);

    if (Physics.Raycast(ray, out hit, 1000))
    {
        Vector3 posiont = new Vector3(hit.point.x, hit.point.y, hit.point.z);
        Debug.Log("点击位置:" + posiont);
    }

  

获取点击坐标(脚本代码记录)

标签:blog   io   ar   os   on   div   log   代码   as   

原文地址:http://www.cnblogs.com/coderfxx/p/4114431.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!