• 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 /
  • Help Room /
avatar image
Question by soccer1mt · Aug 18, 2016 at 01:57 AM · nullnull reference exceptionnullreferencenullreferenceexeption

Having issues with a NullReferenceException error. Code does as expected in some instances but I receive the error in others. Debugger directs me to line where if(hit.collider.tag == (DestructibleCube")).

 using UnityEngine;
 using System.Collections;
 using UnityEngine.EventSystems;
 
 public class TimeDestroy : MonoBehaviour {
     public GameObject bombToDestroy;
     public GameObject explosion;
     public GameObject CubeExplosion;
     public int PowerUpLevel;
    
 
     private float timeLeft = 4;
     // Use this for initialization
     
     
     // This is a 4 second time to have bombs blow up.
     void FixedUpdate ()
     {
         //sets time on instantiated object(dropped bomb) which explodes after 4 seconds
         timeLeft -= Time.deltaTime;
      if ( timeLeft < 0)
         {
             CastFwd(); 
             CastBack();
             CastLeft();
             CastRight();
             
 
             Instantiate(explosion, transform.position, transform.rotation); // graphic for explosion
             Destroy(bombToDestroy, 0f); //removes instantiated bomb
             Bomb_Pickup.bombcount += 1;
             
         }
     }
 
 
     void CastFwd() // Casts a ray in the forward direction to interact with cubes
     {
         
         RaycastHit hit;
         Ray landingRay = new Ray(transform.position, Vector3.forward);
         Debug.DrawRay(transform.position, Vector3.forward);
         Debug.Log("1");
         if (Physics.Raycast(landingRay, out hit, (.3f + (PowerUpLevel * .2f))));
         {
             Debug.Log("2");
             if (hit.collider.tag == ("DestructibleCube")) //checks for if raycast hits collider with tag 
             {
                 Debug.Log("3");
                 Instantiate(CubeExplosion, hit.collider.gameObject.transform.position, Quaternion.identity); //replaces gameobject with a fragmented gameobject to explose
                 hit.collider.gameObject.SetActive(false); //deactivates original gameobject
             }
         }
     }
Comment

People who like this

0 Show 0
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

1 Reply

· Add your reply
  • Sort: 
avatar image
Best Answer

Answer by btmedia14 · Aug 18, 2016 at 03:21 AM

On the line where the Raycast is cast, there is a semi-colon at the end. This is terminating the if statement. This means that sometimes the value of hit is defined in others it is not. But in both instances the subsequent statement checking hit.collider.tag will always execute since the previous if condition has been bypassed. Line 44 notice semi-colon:

 if (Physics.Raycast(landingRay, out hit, (.3f + (PowerUpLevel * .2f))));
Comment

People who like this

0 Show 2 · Share
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 soccer1mt · Aug 18, 2016 at 08:38 AM 0
Share

Thanks so much! I don't think I would have ever found that. I'm surprised though that this didn't raise an issue with the debugger.

avatar image btmedia14 soccer1mt · Aug 18, 2016 at 01:05 PM 0
Share

@soccer1mt Stepping through the debugger most likely what happens is the if (Physics.Raycast... executes and returns either a true or false bool value. In either case the if statement completes at the semi-colon. In the debugger the next statement executed is the hit.collider.tag check. It would give the visual impression in the debugger that the Physics.Raycast returned a true value and was stepping into its if block when actually it had already completed.

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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

65 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

Related Questions

nullreferenceexception object reference not set to an instance of an object 2 Answers

null reference exception help 1 Answer

NullReferenceException: Object reference not set to an instance of an object error 0 Answers

Is it overkill to RequireComponent then check if GetComponent isnt Null in Awake? 1 Answer

#Need Fast Help# NullReferenceException: Object reference not set to an instance of an object 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