Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by ktam876 · Nov 17, 2018 at 05:49 PM · movement script

Enemy Follow Player and a path with IEnumerator

Greetings. I would like to make the enemy follow a path at the start of the scene, and when the player walk into the sight of the enemy, the enemy will ignore the path and go chase the player. Then if the player walked away the enemy will go back to the path. I have made a set of empty object to be the path and the script below is enemy movement script, but the enemy is just ignoring the player. I think the problem is from IEnumerator FollowPlayer(), but I just can't find it out...The script look like this: public class monsterMovement : MonoBehaviour {

 public Transform pathHolder;
 public float speed = 5;
 public float waitTime = .3f;
 public float chaseSpeed = 10;
 float viewAngle;
 Transform player;
 public float minDist;
 public float maxDist;

 public Light spotlight;
 public float viewDistance;
 public LayerMask viewMask;

 public int targetWayPointIndex = 0;
 public Vector3 targetWaypoint;
 Vector3[] waypoints;

 void Start()
 {
     player = GameObject.FindGameObjectWithTag("Player").transform;

     viewAngle = spotlight.spotAngle;

     waypoints = new Vector3[pathHolder.childCount];
     for (int i = 0; i < waypoints.Length; i++)
     {
         waypoints[i] = pathHolder.GetChild(i).position;
         waypoints[i] = new Vector3(waypoints[i].x, transform.position.y, waypoints[i].z);
     }
     StartCoroutine(FollowPath(waypoints));
 }

 void Update()
 {
     if (CanSeePlayer())
     {
         FollowPlayer();             
     }
 }

 IEnumerator FollowPlayer()
 {
     StopCoroutine(FollowPath(waypoints));
     while (true)
     {
         transform.LookAt(player);
         if(Vector3.Distance(transform.position,player.position) > minDist)
         {
             transform.position = Vector3.MoveTowards(transform.position, player.position, chaseSpeed * Time.deltaTime);
         }
         if (Vector3.Distance(transform.position,player.position) < maxDist)
         {
             yield return StartCoroutine(FollowPath(waypoints));
         }
     }
     
 }

 bool CanSeePlayer()
 {
     if(Vector3.Distance(transform.position,player.position)< viewDistance)
     {
         Vector3 dirToPlayer = (player.position - transform.position).normalized;
         float angleBetweenMonsterAndPlayer = Vector3.Angle(transform.forward, dirToPlayer);
         if(angleBetweenMonsterAndPlayer < viewAngle / 2)
         {
             if(!Physics.Linecast(transform.position,player.position, viewMask))
             {
                 Debug.Log(player.position);
                 return true;
             }
         }
     }
     return false;
 }

 IEnumerator FollowPath(Vector3[] waypoints)
 {
        while (true)
     {

         transform.position = Vector3.MoveTowards(transform.position, targetWaypoint, speed * Time.deltaTime);
         if (transform.position == targetWaypoint)
         {
             targetWayPointIndex = (targetWayPointIndex + 1) % waypoints.Length;
             targetWaypoint = waypoints[targetWayPointIndex];
             yield return new WaitForSeconds(waitTime);
             yield return StartCoroutine(TurnToFace(targetWaypoint));
         }
         yield return null;
     }
 }

I'm sorry about the long and messy script above.. But it will be thankful if anyone can help me solve this problem. Thank You!

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

95 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Laggy Movement 1 Answer

Chopping Enemies in half. 1 Answer

Movement speed doesn't change with variable C# 1 Answer

Joystick movement getting stuck. Any Reason why? 0 Answers

How to make gameObject (moving in sin wave) reach target position? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges