Quantcast
Channel: Questions in topic: "quaternion.slerp"
Viewing all articles
Browse latest Browse all 133

Smooth LookAt OnTriggerEnter for static enemies

$
0
0
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; } }

Viewing all articles
Browse latest Browse all 133

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>