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

Enemy rotation while looking. Help.

$
0
0
Hello every one! I have a script that makes the enemy AI look around for me. If I have my flashlight on, he can spot me from greater distance. However, when he spots me and I get closer, the enemy rotates upward while looking at me. I thought I could fix this by locking the rotation but it has not helped. Is the script overwriting the lock? Please help! using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class EnemyAI : MonoBehaviour { public float fpsTargetDistance; public float enemyLookDistance; public float enemyLightLookDistance; public float attackDistance; public float attackLightDistance; public float enemyMovementSpeed; public float damping; public Transform fpsTarget; Rigidbody theRigidBody; Renderer myRender; public Light enemyLight; public Light seeEnemy; public Light PlayerLight; public GameObject MuzzleFlash; public Animator animator; public AudioSource gunshot; // Use this for initialization void Start() { myRender = GetComponent(); theRigidBody = GetComponent(); } // Update is called once per frame void FixedUpdate() { fpsTargetDistance = Vector3.Distance(fpsTarget.position, transform.position); if (PlayerLight.isActiveAndEnabled) { if (fpsTargetDistance < enemyLightLookDistance) { enemyLight.enabled = true; seeEnemy.enabled = true; lookAtPlayer(); getCloser(); print("Noticed Flashlight"); if (fpsTargetDistance < attackLightDistance) { print("ATTACK!"); attack(); } } if (fpsTargetDistance > enemyLightLookDistance) { enemyLight.enabled = false; seeEnemy.enabled = false; } } else { enemyLight.enabled = false; seeEnemy.enabled = false; animator.SetBool("IsShootingGun", false); } if (fpsTargetDistance < enemyLookDistance) { enemyLight.enabled = true; seeEnemy.enabled = true; lookAtPlayer(); print("Noticed Player"); } if (fpsTargetDistance < attackDistance) { attack(); print("ATTACK!"); } } void lookAtPlayer() { Quaternion rotation = Quaternion.LookRotation(fpsTarget.position - transform.position); transform.rotation = Quaternion.Slerp(transform.rotation, rotation, Time.deltaTime * damping); } void attack() { animator.SetBool("IsShootingGun", true); } void getCloser() { theRigidBody.AddForce(transform.forward * enemyMovementSpeed); } }

Viewing all articles
Browse latest Browse all 133

Trending Articles