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 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 which go off and are not caught by my code appear to be suppressed by unity, which is to say that no error message is shown to the user, making it difficult to tell if something 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 this 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 hitting 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, which 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
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

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
Add comment · 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

I$$anonymous$$HO 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.

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

Unity Build EXE Stuck 0 Answers

unity os x build divideByZeroException 1 Answer

Can I force other computers to use non-default graphic settings, like fantastic. 1 Answer

Building My Project Opens a CMD-Like Application? 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