坦克跟随相机

来源:互联网 发布:筑业标书制作软件 编辑:程序博客网 时间:2024/05/14 23:23

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

 

public class Camera_Follow_Zoom : MonoBehaviour {

    public Transform target;

    public float distanceUp = 5f;

    public float distanceAway = 5f;

    public float smooth = 2f;//位置平滑移动值

    public float camDepthSmooth = 2f;

    // Use this for initialization

    void Start () {

}

// Update is called once per frame

void Update()

    {

        // 鼠标轴控制相机的远近

        if ((Input.mouseScrollDelta.y < 0 && Camera.main.fieldOfView >= 3) || Input.mouseScrollDelta.y > 0 && Camera.main.fieldOfView <= 80)

        {

            Camera.main.fieldOfView += Input.mouseScrollDelta.y * camDepthSmooth * Time.deltaTime;

        }

 

    }

 

    void LateUpdate()

    {

        //相机的位置

        Vector3 disPos = target.position + Vector3.up * distanceUp - target.forward * distanceAway;

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

        //相机的角度

        transform.LookAt(target.position);

    }

}

原创粉丝点击