Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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 gusicpavao · Apr 24, 2020 at 02:53 PM · pathfindingfollow playerfollow pathsphericalnpcs

Ai Follow Player which moves over a sphere

Hello, I'm trying to implement an Ai character that follows the player around the surface of the sphere. I've successfully implemented player movement around the sphere, but I've been banging my head for hours looking for some Ai solution. For the Ai character the only thing I want is to follow me around the sphere. Both character and player use the same function for translation: transform.translate (direction) so that direction is a normalized vector. I found a solution that works but only for the top half of the sphere. Here is my code example:

 public Transform targetTransform;
 public Transform agentTransform;

 private List<Vector3> path;
 public float searchRate;
 private float lastSearch = 0.0f;
 private int nodeIndex;
 public float minProximity;

 public override void UpdateController()
 {
     UpdatePathFinding();
 }

 private void UpdatePathFinding()
 {
     if (Time.time > searchRate + lastSearch)
     {
         path = PathfindingManager.Instance.FindPath(agentTransform.position, targetTransform.position);
         nodeIndex = 1;
         lastSearch = Time.time;
     }

     var targetDirection = UpdatePath();
     InvokeDirectionEvent(targetDirection);
 }

 private Vector3 UpdatePath()
 {
     if (path == null || path.Count == 0 || nodeIndex >= path.Count)
         return Vector3.zero;

     if (Vector3.Distance(agentTransform.position, path[nodeIndex]) <= minProximity)
         nodeIndex++;

     if (nodeIndex >= path.Count)
         return Vector3.zero;

     var agentPosition = new Vector3(agentTransform.position.x, 0, agentTransform.position.z);
     var targetPosiotion = new Vector3(targetTransform.position.x, 0, targetTransform.position.z);
     var nodePosiotion = new Vector3(path[nodeIndex].x, 0, path[nodeIndex].z);
     var direction = (agentPosition - targetPosiotion).normalized;
     return direction;
  }


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

129 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 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

Super basic enemy pathfinding AI 1 Answer

How can I switch paths by pressing a button? 1 Answer

Follow curved path plus also swipes 1 Answer

How to make characters follow player like Earthbound? 0 Answers

Is this pathfinding waypoint based AI script viable? 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