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 andrewwebber25 · Jun 19, 2017 at 07:38 PM · collisioncollidertransform.positionpositioningsidescroller

Hazards not Working Properly

Hey everyone, making a 2D side scroller game and like most, im trying to create some hazards. I drop in a sprite of some "spikes", put a collider on it and mark "Is trigger". Then I attach this script to it.

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class Hazard : MonoBehaviour {
 
     private Controls player;
     public Transform start;
 
     void Start()
     {
         player = FindObjectOfType<Controls>();
     }
 
     void Update()
     {
     }
 
     void OnTriggerEnter2D(Collider2D other)
     {
         if (other.tag == "Player")
         {
             player.transform.position = start.position;
         }
     }
 }

The script debugs perfectly. Now I create a new Empty Object and call it "start" and position it at the beginning of my level. Lastly, I go to player and apply the Player tag I just created to it. So now, when the player collides with a spike, he should spawn back at the "start" (the empty object I created called start). When I play it, the player walks fine and as soon as he touches the spike, nothing happens but this error does come up

"NullReferenceException: Object reference not set to an instance of an object Hazard.OnTriggerEnter2D (UnityEngine.Collider2D other) (at Assets/Scripts/Hazard.cs:23)" and it points to my line of text "player.transform.position = start.position;". It appears that it cant find my Empty Object I created called start. This object does not have anything attached to it. The only thing in the Inspector for the Spike is the Sprite, the collider and the Hazard code I attached to it. Im not sure how it can be coming up null when im referencing the object. Unless im not referencing it properly? Any help is greatly appreciated.

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 Vicarian · Jun 19, 2017 at 08:42 PM

If you added the start field after the Hazard script was already on the spike, you'll want to drag your Start transform onto the script for the spike. One way to easily check to see if you forgot to update a reference in the Inspector is to do an existence check and print a message:

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
  
 public class Hazard : MonoBehaviour {
  
     private Controls player;
     public Transform start;
  
     void Start()
     {
         player = FindObjectOfType<Controls>();
     }
  
     void Update()
     {
     }
  
     void OnTriggerEnter2D(Collider2D other)
     {
         if (other.tag == "Player")
         {
             if (!start)
             {
                 Debug.LogWarning("Start on object " + name + "uninitialized!");
                 return;
             }
     
             player.transform.position = start.position;
         }
     }
 }

Unity won't really be able to determine automatically what start is, so you need to assign the transform manually by dragging the start transform from the Hierarchy to the start field of this script. Alternatively, you could tag start with a unique tag, then use FindObjectWithTag to assign it.

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 andrewwebber25 · Jun 19, 2017 at 08:57 PM 0
Share

Literally right when I was done typing this out I noticed that I didn't have start attached to the spike script. Unfortunately, that still did not fix it. If dragging Start right onto the open Start box on the Hazards script attached to the spike doesn't do it, idk what will :(

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

106 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

Related Questions

Collider.OnCollisionStay Climb up/Down a ladder? 0 Answers

Trigger 2D repel on overlap (2-D player combat issue) 2 Answers

Knockout Or Suicide Detection 1 Answer

How could I tell a OnCollisionEnter method running on collider instead of running on a gameObject which is collided by others? 1 Answer

Cannot move FPSController after respawning at a spawn point. 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