当前位置:   article > 正文

通过射线检测实现物体移动到鼠标点击位_lua怎么实现射线点击移动

lua怎么实现射线点击移动

脚本挂在移动物体上,判断射线点击层设置标签为Plane

public class Playmove : MonoBehaviour {

    Ray ray;
    RaycastHit hit;
    bool state = false;
    public float moveSpeed;
    // Use this for initialization
    void Start () {

    }

    // Update is called once per frame
    void Update () {
        if (Input.GetMouseButtonDown(0))
        {

            ray = Camera.main.ScreenPointToRay(Input.mousePosition);
            if (Physics.Raycast(ray,out hit))
            {
                if (hit.collider.tag == "Plane")
                {
                    state = true;
                }
            }
        }
        if (state)
        {
            transform.forward = Vector3.Lerp(transform.forward, hit.point - transform.forward, Time.deltaTime);
            transform.position = Vector3.MoveTowards(transform.position, hit.point, Time.deltaTime*moveSpeed);
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/101052
推荐阅读
相关标签
  

闽ICP备14008679号