欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Unity 3d 实现相机跟随

程序员文章站 2024-03-26 08:21:35
...

Unity 3d 实现相机跟随

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

public class follow : MonoBehaviour
{
  public GameObject palyer;
  private Vector3 setting;
  void Start(){
   setting=transform.position-palyer.transform.position;//计算物体与相机之间的距离
  }
  void FixedUpdate(){
   transform.position=setting+palyer.transform.position;//当player位置发生改变相机位置也相应发生改变
  }
}
相关标签: unity