• 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
0
Question by ConnorXcrash_ · Apr 28 at 09:20 PM · scripting problembuildnullreferenceexception

Scripts working in Editor, but not in build

Everything works great in the editor, but as soon as I try it in the build, some of the controls don't work, such as the Jump mechanic using the spacebar. It also gives me the following error: "NullReferenceException: Object reference not set to an instance of an object Player.Update () (at Assets/Scripts/Player/Player.cs:44)". Please help me! This project is due in less than a week!!

Here's the script that tracks the player's health and what not:

 {
     public Collision2D collision;
 
     GameObject playerObject;
     Collider2D player;
     Rigidbody2D player_rb;
     readonly AudioSource gg_player;
     
     [Header("Enemy Hook Config")]
     public Rigidbody2D nearestEnemy;
     public Transform nearestEnemyTransform;
 
     [Header("Health Tracking")]
     public HealthBar healthBar;
     public Slider healthSlider;
     public int maxHealth = 100;
     public int currentHealth;
 
     private void Start()
     {
         healthSlider = GetComponent<Slider>();
 
         // Get the nearest enemy transform and collider
         nearestEnemyTransform = FindObjectOfType<EnemyAI>().GetComponent<Transform>();
         nearestEnemy = GetComponent<Rigidbody2D>();
 
         // Set player health data
         healthBar.SetMaxHealth(maxHealth);
         healthBar.SetHealth(currentHealth);
         currentHealth = maxHealth;
     }
 
     void Update()
     {
         if (collision.gameObject.CompareTag("Enemy"))
         {
             TakeDamage(10);
         }
 
         if (currentHealth <= 0)
         {
             KillPlayer();
         }
         else
         {
             return;
         }
     }
 
     void KillPlayer()
     {
         SceneManager.LoadScene("GameOver");
     }
 
     //public void OnCollisionEnter2D()
     //{
     //    if(collision.collider.gameObject.CompareTag("Enemy"))
     //    {
     //        TakeDamage(10);
     //    }
     //}
 
     void TakeDamage(int damage)
     {
         currentHealth -= damage;
         healthBar.SetHealth(currentHealth);
     }
 }
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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Pathojen · Apr 28 at 09:30 PM

Make Player public, like this.

 public GameObject PlayerObject;

Then drag and drop the player into the slot with PlayerObject on it.

Alternatively, in Start, type:

 PlayerObject = GameObject.Find("PlayerObject");


Edit: Change Player to player. In the update.

Comment
Add comment · Show 7 · 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 ConnorXcrash_ · Apr 28 at 09:54 PM 0
Share

It's still therealt text

image-2022-04-28-175433256.png (18.7 kB)
avatar image Pathojen · Apr 28 at 10:33 PM 0
Share

Is this the code "Player.cs"?

avatar image ConnorXcrash_ Pathojen · Apr 28 at 10:40 PM 0
Share

Yes. I even replaced the code with what you suggested.

avatar image Pathojen · Apr 28 at 10:42 PM 0
Share

OK. Do you have a space between player and Object? Should be one word.

avatar image ConnorXcrash_ Pathojen · Apr 28 at 11:04 PM 0
Share

No space between them.

avatar image Pathojen · Apr 28 at 11:00 PM 0
Share

Oh, good grief. The error says Player, but the Collider2D is player.

avatar image ConnorXcrash_ Pathojen · Apr 28 at 11:03 PM 0
Share

Yeah. I've been trying everything I know of so far.

avatar image
0

Answer by Eddie21uk · May 22 at 10:54 PM

Hi A bit late try:

OnCollisionEnter(collision.gameobject.CompareTag("Enemy")) { TakeDamage(10); }

not:

  void Update()
  {
      if (collision.gameObject.CompareTag("Enemy"))
      {
          TakeDamage(10);
      }
Comment
Add comment · 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

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

299 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 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 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

Next scene is loading in the Engine, but not in the Build! Help please 1 Answer

placed scripts in the Editor folder and taken back out, no longer work in build, can this be fixed? 0 Answers

NullReferenceError in Build but not the Editor,NullReferenceException in Build but not Editor. 0 Answers

Unity won't build my scripts 0 Answers

Space Shooter Score Text NullReference error 3 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