Unity相机查看预览旋转模型

csharp 复制代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class CameraTargetMove : MonoBehaviour
{
    public Transform target;
    public Vector3 pivotOffset = Vector3.zero;
    public float distance = 10.0f;
    public float minDistance = 2f;
    public float maxDistance = 15f;
    public float zoomSpeed = 1f;
    public float xSpeed = 250.0f;
    public float ySpeed = 250.0f;
    public bool allowYTilt = true;
    public float yMinLimit = -90f;
    public float yMaxLimit = 90f;
    private float x = 0.0f;
    private float y = 0.0f;
    private float targetX = 0f;
    private float targetY = 0f;
    public float targetDistance = 0f;

    private void Start()
    {
        var angles = transform.eulerAngles;
        targetX = x = angles.x;
        targetY = y = ClampAngle(angles.y, yMinLimit, yMaxLimit);
        targetDistance = distance;

    }

    private void LateUpdate()
    {
        if (!target) return;
        var scroll = Input.GetAxis("Mouse ScrollWheel");
        if (scroll > 0.0f) targetDistance -= zoomSpeed;
        else if (scroll < 0.0f)
            targetDistance += zoomSpeed;
        targetDistance = Mathf.Clamp(targetDistance, minDistance, maxDistance);
        if (Input.GetMouseButton(1) || (Input.GetMouseButton(0) && (Input.GetKey(KeyCode.LeftControl) || Input.GetKey(KeyCode.RightControl))))
        {
            targetX += Input.GetAxis("Mouse X") * xSpeed * 0.02f;
            if (allowYTilt)
            {
                targetY -= Input.GetAxis("Mouse Y") * ySpeed * 0.02f;
                targetY = ClampAngle(targetY, yMinLimit, yMaxLimit);
            }
        }

        x = targetX;
        y = targetY;
        Quaternion rotation = Quaternion.Euler(y, x, 0);
        distance = targetDistance;
        Vector3 position = rotation * new Vector3(0.0f, 0.0f, -distance) + target.position + pivotOffset;
        transform.rotation = rotation;
        transform.position = position;
    }


    private static float ClampAngle(float angle, float min, float max)
    {
        if (angle < -360) angle += 360;
        if (angle > 360) angle -= 360;
        return Mathf.Clamp(angle, min, max);
    }
}

阻尼感效果 相机查看模型

csharp 复制代码
using System.Collections;

using System.Collections.Generic;

using UnityEngine;

public class MoveCameraByMouse : MonoSingleton<MoveCameraByMouse>

{

    // 围绕旋转的目标物体

    public Transform target;

    // 设置旋转角度

    public float x = 0f, y = 0f, z = 0f;

    public bool xFlag = false, yFlag = false;

    // 旋转速度值

    public float xSpeed = 10f, ySpeed = 10f, mSpeed = 5f;

    // y轴角度限制,设置成一样则该轴不旋转

    public float yMinLimit = -50, yMaxLimit = 80;

    // x轴角度限制,同上

    public float leftMax = -365, rightMax = 365;

    // 距离限制,同上

    public float distance = 3f, minDistance = 0.5f, maxDistance = 6f;

    // 阻尼设置

    public bool needDamping = true;

    public float damping = 3f;

    public float initX;

    public float initY;

    // 改变中心目标物体

    public void SetTarget(GameObject go)

    {

        target = go.transform;

    }

    void Start()

    {

        Vector3 angles = transform.eulerAngles;

        x = angles.y;

        y = angles.x;



        //pers();

    }

    void LateUpdate()

    {

        if (target)

        {

            if (Input.GetMouseButton(1))

            {

                // 判断是否需要反向旋转

                if ((y > 90f && y < 270f) || (y < -90 && y > -270f))

                {

                    x -= Input.GetAxis("Mouse X") * xSpeed * 0.02f;

                }

                else

                {

                    x += Input.GetAxis("Mouse X") * xSpeed * 0.02f;

                }

                y -= Input.GetAxis("Mouse Y") * ySpeed * 0.02f;



                x = ClampAngle(x, leftMax, rightMax);

                y = ClampAngle(y, yMinLimit, yMaxLimit);

            }



            distance -= Input.GetAxis("Mouse ScrollWheel") * mSpeed;

            distance = Mathf.Clamp(distance, minDistance, maxDistance);



            Quaternion rotation = Quaternion.Euler(y, x, z);

            Vector3 disVector = new Vector3(0.0f, 0.0f, -distance);

            Vector3 position = rotation * disVector + target.position;



            // 阻尼感

            if (needDamping)

            {

                transform.rotation = Quaternion.Lerp(transform.rotation, rotation, Time.deltaTime * damping);

                transform.position = Vector3.Lerp(transform.position, position, Time.deltaTime * damping);

            }

            else

            {

                transform.rotation = rotation;

                transform.position = position;

            }



        }

    }

    // 对数值进行限制;

    static float ClampAngle(float angle, float min, float max)

    {

        if (angle < -360)

            angle += 360;

        if (angle > 360)

            angle -= 360;

        return Mathf.Clamp(angle, min, max);

    }

    // 初始

    public void pers()

    {

        this.x = initX;

        this.y = initY;

    }


    public void Reserpos(Vector2 vector)
    {
        //this.x = vector.x;

        //this.y = vector.y;
        this.x = 1f;
       
        this.y = 35f;
        this.z = 0;
        distance = 2; minDistance = 1f; maxDistance = 4;
       
    }
    // 正视图

    public void front()

    {

        this.x = 0f;

        this.y = 0f;

    }

    // 后视图

    public void back()

    {

        this.x = 180f;

        this.y = 0f;

    }

    // 左视图

    public void left()

    {

        this.x = 90f;

        this.y = 0f;

    }

    // 右视图

    public void right()

    {

        this.x = 270f;

        this.y = 0f;

    }

    // 俯视图

    public void top()

    {

        this.x = 0f;

        this.y = 90f;

    }

    // 仰视图

    public void bottom()

    {

        this.x = 0f;

        this.y = -90f;

    }

}
相关推荐
沐沐森的故事32 分钟前
Unity之VS脚本自动添加头部注释Package包开发
unity·游戏引擎·注释·注释头·头部注释·scripthead·脚本注释
柠檬味的薄荷心44 分钟前
【Unity2D 2022:Particle System】添加拾取粒子特效
笔记·unity·c#·游戏引擎
咕噜企业签名分发-淼淼1 小时前
新手入门必备:游戏引擎推荐指南
游戏引擎
JerryHe2 小时前
Android Camera API发展历程
android·数码相机·camera·camera api
大舍传媒5 小时前
欧美海外媒体发稿,国外新闻发布,外媒发布
大数据·人工智能·游戏引擎·信息与通信·用户运营
仁希'6 小时前
《Unity3D高级编程之进阶主程》第二章 架构(三) - 架构的误区,如何做前端架构,以及如何架构Unity3D项目
笔记·unity·架构
光电的一只菜鸡6 小时前
相机光学(二十五)——数字相机和模拟相机
人工智能·数码相机
V言微语8 小时前
2.5 C#视觉程序开发实例1----CamManager实现模拟相机采集图片
开发语言·数码相机·c#
老朱佩琪!12 小时前
Unity分享一个简单的3D角色漫游脚本
3d·unity·游戏引擎
雪 狼14 小时前
unity对于文件夹的操作
windows·unity·游戏引擎