Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 opdday2 · Feb 09, 2014 at 04:55 AM · arraysreturnupdate-order

Keep getting index out of range exception?

The code below should move my unit from point to point using the aron granberg pathfinding project. Path p: has a Vector3 array "VectorPath" storing theses points and my character should progress through all the points reaching the last one and at said point Path p is set to null. When path is null Fixed Update should not call any movement logic as I've set it to return prior to any calls. Anyway instead of stopping before the logic in the catch I've set use a bool operator and instead continues to make calls on the now null path class and the undeclared Vector3[] VectorPath and get null reference error/ index out of range.`public float speed = 0.2f; public float unitRotForce = 10; bool followingUnit = false; bool patrolSet = false; Vector3 patrolA; Vector3 patrolB; Quaternion _lookRotation; Vector3 _direction; public void MoveTo(Vector3 moveTo) { //Debug.Log (moveTo); seeker.StartPath (transform.position, moveTo, OnPathComplete); currentWaypoint = 0; }

 // Fixed Update. Calls that need to be made consistent
 void FixedUpdate () 
 {
     // Unit Attack Updates
     if (attackingUnit && Time.time >= attackTime)
     {
         AttackOut ();    
         attackTime = Time.time + attackInterval;
     }
     if (followingUnit)
     {
         if (Vector3.Distance(transform.position, toAttack.transform.position) > attackRange)
         {
             if (Vector3.Distance(origActionUnitPos, toAttack.transform.position) <= 0.2f)
             {
                 MoveTo(toAttack.transform.position);
                 origActionUnitPos = toAttack.transform.position;
             }
         }
     }

     // Unit Movement Updates
     if (currPath == null) {
         //We have no path to move after yet
         return;
     }
     // Unit Rotation Updates
     _direction = (currPath.vectorPath[currentWaypoint] - transform.position);
     _lookRotation = Quaternion.LookRotation (new Vector3(_direction.x, 0, _direction.z));
     transform.rotation = Quaternion.Slerp (transform.rotation, _lookRotation,
                                           Time.deltaTime * unitRotForce);

     //Direction to the next waypoint
     Vector3 dir = (currPath.vectorPath[currentWaypoint]-transform.position).normalized;
     dir *= speed * Time.fixedDeltaTime;
     controller.SimpleMove (dir);
 
     //Check if we are close enough to the next waypoint
     //If we are, proceed to follow the next waypoint
     if (Vector3.Distance (transform.position,currPath.vectorPath[currentWaypoint]) <= 2f) {
         if (currentWaypoint > currPath.vectorPath.Count) {
             Debug.Log ("End Of Path Reached");
             currPath = null;
             return;
         }
         currentWaypoint++;

         if (currentWaypoint == currPath.vectorPath.Count && patrolSet)
         {
             if (currPath.vectorPath[currentWaypoint] == patrolA)
             {
                 MoveTo (patrolB);
             }
             else
             {
                 MoveTo (patrolA);
             }
         }
         return;
     }


 }`
Comment
Add comment · Show 1
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
avatar image Benproductions1 · Feb 09, 2014 at 08:48 AM 0
Share

Please format your code. If you don't know how, watch the tutorial video on the right and read the FAQ.

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

19 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

Related Questions

Float seen as Object, help? 1 Answer

How to use a JS Array() with #pragma strict? 1 Answer

Is this considered bad coding 1 Answer

Returning one dimension of a two-dimensional array 1 Answer

Instantiate multiple objects from an array 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