首页 > 编程语言 > 详细

Unity 摄像机跟随

时间:2019-04-11 22:33:30      阅读:154      评论:0      收藏:0      [点我收藏+]

 

方式一:将摄像机直接拖到游戏对象的下面;

 

方式二:脚本实现

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class kow : MonoBehaviour
{
    public Transform targetTr;
    public float dist = 10.0F;
    public float height = 3.0F;
    public float dampTrace = 20.0F;

    private Transform tr;

    // Start is called before the first frame update
    void Start()
    {
        tr = GetComponent<Transform>();
    }

    // Update is called once per frame
    void LateUpdate()
    {
        tr.position = Vector3.Lerp(tr.position, targetTr.position - (targetTr.forward * dist) + (Vector3.up * height), Time.deltaTime * dampTrace);
        tr.LookAt(targetTr.position);
    }
}

 这里主要的是Vector3.Lerp()和函数,三个参数,第一个:起始位置;第二个:结束位置;第三个:浮点格式。

Unity 摄像机跟随

原文:https://www.cnblogs.com/Optimism/p/10692849.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!