三维物体跟随鼠标移动

Posted y1016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三维物体跟随鼠标移动相关的知识,希望对你有一定的参考价值。

 //上下 x(-45,15) 
    //左右 y(-60,60) 
    private float maxYRotation = 120;
    private float minYRotation = 0;
    private float maxXRotation = 60;
    private float minXRotation = 0;
 void Update()
    {
       //计算出鼠标在屏幕上的位置
            float xPosPrecent = Input.mousePosition.x / Screen.width;
            float yPosPrecent = Input.mousePosition.y / Screen.height;

            //Mathf.Clamp 限制value的值在min和max之间 如果value小于min,返回min。如果value大于max,返回max,否则返回value 
            float xAngele = -Mathf.Clamp(yPosPrecent * maxXRotation, minXRotation, maxXRotation) + 15;
            float yAngele = Mathf.Clamp(xPosPrecent * maxYRotation, minYRotation, maxYRotation) - 60;

            transform.eulerAngles = new Vector3(xAngele, yAngele, 0);
        }
      
    }

 

以上是关于三维物体跟随鼠标移动的主要内容,如果未能解决你的问题,请参考以下文章

新人求教unity 2d 物体跟随鼠标移动的问题

Unity 物体跟随鼠标点击移动,判断物体是否在移动

二维物体跟随鼠标移动

unity3d里照相机跟随鼠标左右移动的代码怎么写

Unity让物体跟随鼠标移动

Unity让物体跟随鼠标移动