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 ThomasBT · Apr 27, 2018 at 01:43 PM · aiunity 4object referenceobject-reference-errorfsm

FSM object reference not set to an instance of an object

Ok I was building FSM using Unity 4 Game Programming AI and I keep getting the error "object reference not set to an instance of an object" And for the life of me I can't figure out how to fix it I followed the code step by step and nothing works. When I click on the message and it takes me to the line int rndIndex = Random.Range (0, pointList.Length); , but I can't see anything wrong with it can someone please help me with this I can't tell if I'm missing something as I rechecked to see if the code matches with what was in the book and can't find any problems game still runs, but the scrpit does nothing and just keeps giving this one error.

 using UnityEngine;
  using System.Collections;
 public class SimpleFSM : FSM {
 
     public enum FSMState
     {
         None,
         Patrol,
         Chase,
         Attack,
         Dead,
     }
 
     //Current state that the NPC is Reaching
     public FSMState curState;
     //Speed of NPC
     private float curSpeed;
     private float curRotSpeed;
 
     protected override void Initialize()
     {
         curState = FSMState.Patrol;
         curSpeed = 150.0f;
         curRotSpeed = 2.0f;
 //        Dead = false;
 
         //get list of points
         pointList = GameObject.FindGameObjectsWithTag("WandarPoint");
 
         //Set Random destination point
         FindNextPoint();
 
         //Get the enemy target the player
         GameObject objPlayer = GameObject.FindGameObjectWithTag("Player");
         PlayerTransform = objPlayer.transform;
     }
     protected override void FSMUpdate()
     {
         switch(curState)
         {
         case FSMState.Patrol:
             UpdatePatrolState (); break;
         case FSMState.Chase:
             UpdateChaseState (); break;
         }
     }
 
     protected void UpdatePatrolState ()
     {
         //find another random patrol point
         //point is reached
         if (Vector3.Distance (transform.position, destPos) <= 100.0f) {
             print ("Readched to the  destination point\n" + "calulating the next point");
 
             FindNextPoint ();
         }
 
         //Check distance with the player
         //When the distance is near, transition to chase state
         else if (Vector3.Distance (transform.position, PlayerTransform.position) <= 300.0f) {
             print ("Switch to chase position");
             curState = FSMState.Chase;
         }
 
         //Rotate to the target point
         Quaternion targetRotation =
             Quaternion.LookRotation (destPos - transform.position);
         transform.rotation = Quaternion.Slerp (transform.rotation, targetRotation, Time.deltaTime * curRotSpeed);
 
         //Go Forward 
         transform.Translate (Vector3.forward * Time.deltaTime * curSpeed);
     }
 
     protected void FindNextPoint()
     {
         print ("Finding next point");
         int rndIndex = Random.Range (0, pointList.Length);
         float rndRadius = 10.0f;
         Vector3 rndPosition = Vector3.zero;
         destPos = pointList [rndIndex].transform.position + rndPosition;
 
         //Check Range to decide the random point 
         if (IsInCurrentRange(destPos))
         {
             rndPosition = new Vector3 (Random.Range (-rndRadius, rndRadius), 0.0f, Random.Range (-rndRadius, rndRadius));
             destPos = pointList [rndIndex].transform.position + rndPosition;
         }
     }
     protected bool IsInCurrentRange(Vector3 pos)
     {
         float xPos = Mathf.Abs (pos.x - transform.position.x);
         float zPos = Mathf.Abs (pos.z - transform.position.z);
 
         if (xPos <= 50 && zPos <= 50)
             return true;
         return false;
     }
 
     protected void UpdateChaseState()
     {
         //Set the target position as the player position
         destPos = PlayerTransform.position;
 
         //Check the distance with the player when the distance is near, transition to attack state
         float dist = Vector2.Distance(transform.position,PlayerTransform.position);
         if (dist <= 200.0f)
         {
             curState = FSMState.Patrol;
         }
 
         //Go Forward
         transform.Translate(Vector3.forward * Time.deltaTime * curSpeed);
     }
         
 }
             
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

137 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Object Reference 1 Answer

Finite States Machine (Inheriting question) 0 Answers

Bestpractices for statemachines 0 Answers

Is it possible to define a public variable of type UnityEngine.Object? 0 Answers

Cooperating AI bots 0 Answers


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