using System; using System.Collections; using System.Collections.Generic; using DragonLi.Core; using UnityEngine; public class LookPlayer : MonoBehaviour { private void OnEnable() { } private void Update() { transform.LookAt(GameManager.Ins.player.transform.position.ReflectVectorXOZ()); } }