using System.Collections;using System.Collections.Generic;using UnityEngine;public class L13 : MonoBehaviour{ public Transform Lookobj; void Update() { transform.LookAt(Lookobj); //相机注视 }}