Hi,
I've got a very simple setup where enemies are continually rotating until the player enters their range, at which point they need to turn towards the player. I've tried numerous Quaternion rotations and Quaternion.Lerps but the rotation is either instantaneous, in the wrong direction or throws the enemies off their axis entirely.
Any help would be appreciated!
public GameObject player;
[SerializeField] public Vector3 yAngle;
public bool isTriggered = false;
// Start is called before the first frame update
void Start()
{
switchScript = GetComponent();
player = GameObject.FindWithTag("Player");
}
// Update is called once per frame
void Update()
{
if (!isTriggered)
{
transform.Rotate(yAngle, Space.Self);
}
if (isTriggered)
{
transform.LookAt(player.transform.position);
}
}
void OnTriggerEnter(Collider other)
{
if (other.gameObject.CompareTag("Player"))
{
isTriggered = true;
}
}
void OnTriggerExit(Collider other)
{
if (other.gameObject.CompareTag("Player"))
{
isTriggered = false;
}
}
↧