using UnityEngine; public class PlayerRotate : MonoBehaviour { public Vector3 LookTarget(Vector3 moveDir) { return transform.position + moveDir; } }