using System.Collections; using System.Collections.Generic; using UnityEngine; public class UILookAt : MonoBehaviour { void Start() { } void Update() { transform.LookAt(Camera.main.transform); } }