• 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
Question by Trafalgar · Mar 05, 2013 at 03:52 AM · buildnullreferenceexceptionexecutableexceptions

Unity seems to be silently suppressing exception dialogs, and showing no messages. Why is that?

Specifically, when using the Build feature to build a windows executable (I've tried win86-64 with both development build on and off), exceptions w$$anonymous$$ch go off and are not caught by my code appear to be suppressed by unity, w$$anonymous$$ch is to say that no error message is shown to the user, making it difficult to tell if somet$$anonymous$$ng has gone wrong without putting a broad exception handler connected to some kind of error display, log, or the like, into every single Update method, on every behavior, etc.

To demonstrate, I made a new project, left the default camera in place, and created a cube at <0,0,0>, and tagged it with Player. Then I added the following script to the Camera object: using UnityEngine; using System.Collections;

public class CauseNRE : MonoBehaviour {

 // Use t$$anonymous$$s for initialization
 void Start () {
 
 }
 
 // Update is called once per frame
 void Update () {
     GameObject.FindGameObjectWithTag("Respawn").GetComponent();
     GameObject.Destroy(GameObject.FindGameObjectWithTag("Player"));
 }

}

Note that there is no Respawn object in the scene. When run in the Unity editor itself, it stops upon $$anonymous$$tting the first line in Update, and shows the error in the console. When built and run, however, I am presented with a nice view of the cube, and that is all. No errors, just the cube, w$$anonymous$$ch is remaining intact purely because I wrote the first line of Update to NRE every time it is run.

So, why doesn't Unity show the standard .NET exception dialog - and why aren't there line numbers and filenames available to the exceptions when debugging build is checked? :S

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

Answer by Eric5h5 · Mar 05, 2013 at 04:02 AM

Unity doesn't use .NET, and you can always look at the log to see runtime errors. Scripts don't have line numbers or file names in a build--at that point they have been compiled. Anyway, having a game crash when it doesn't have to is a bad user experience.

Comment

People who like this

0 Show 1 · 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 Trafalgar · Mar 05, 2013 at 07:45 AM 0
Share

IMHO it is a worse user experience to have a game behave nonsensically, or to corrupt the game state, or to crash in a place unrelated to the actual problem, and it is unlikely that every problem will be discovered in the editor itself (some will slip through into builds which are distributed to testers, or in release versions).

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

11 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

Related Questions

Distribute terrain in zones 3 Answers

UniWii dll building executable error!! 0 Answers

Games built in Unity run slowly 2 Answers

Troubleshooting desktop build receiving unhandled NULL exception 0 Answers

How to build a game with Leap Motion ? 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