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 FrowningPigeon · Jul 02, 2013 at 04:07 PM · java

Detect objects name you just hit

Hi all,

I have a script which when you run your character into a cube, it destroys it...and it works fine. But now i only want to destroy a cube if it has a certain name....

 #pragma strict
 
 
 
 
 function Start () {
 }
 
 function Update () {
 
 }
 function OnTriggerEnter ( collision : Collision )
 {
 if (this.gameObject.name == "Cube2"){
     GameObject.Destroy ( gameObject ) ;
     }
 }

That is what I have tried...and it does not work, could anyone point me in the correct direction please? Thanks!

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
1
Best Answer

Answer by Em3rgency · Jul 02, 2013 at 04:13 PM

Well, first of all, you never need to use this. in unity. Its redundant.

Second, add a debug line to see the name of the object you hit, and you'll be able to see what you did wrong :)

 function OnTriggerEnter ( collision : Collision )
 {
     Debug.Log("You just hit " + gameObject.name);    
 
     if (gameObject.name == "Cube2")
     {
         GameObject.Destroy ( gameObject ) ;
     }
 }
Comment
Add comment · Show 8 · 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 FrowningPigeon · Jul 02, 2013 at 04:21 PM 0
Share

The debug.log line does not come up in the console?

avatar image Julien-Lynge · Jul 02, 2013 at 04:23 PM 0
Share

Now I'm confused :)

You said it was working fine before, so presumably OnTriggerEnter was being called correctly and you were destroying the object given by collision? Yet you're saying that Debug.Log isn't appearing, which means OnTriggerEnter isn't being called. What code did you have before that was working?

Also, I was presu$$anonymous$$g that this script was attached to the character - what is this script attached to? If it's attached to the cube, why would you need to check the name at all?

We really need more information from you on what exactly you're trying to do, what you expect to happen, and what you're seeing ins$$anonymous$$d.

avatar image FrowningPigeon · Jul 02, 2013 at 04:25 PM 0
Share

Right sorry I have made one hell of a mistake....I have pasted the wrong code lol...here is the code i am using which works.

 function OnTriggerEnter (other : Collider) {
    Destroy(other.gameObject);
    Score.score += 1;
 }
avatar image FrowningPigeon · Jul 02, 2013 at 04:29 PM 0
Share

Right ok it is logging the name as 'object', but I have changed the name of the cube to Cube2? What am I doing wrong here?

avatar image Em3rgency · Jul 02, 2013 at 04:30 PM 0
Share

Ok, so if the cube gets destroyed, now you just need an if statement. if(other.gameObject.name == "TheCubeYouHate") { GameObject.Destroy(other.gameObject) }

Show more comments
avatar image
0

Answer by Julien-Lynge · Jul 02, 2013 at 04:14 PM

'this' is the object the script is attached to. Likely you want to use the 'collision' object rather than 'this'. Check the script reference for Collision.

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 Em3rgency · Jul 02, 2013 at 04:21 PM 0
Share

This is true. I sort of assumed the code was attached to the cube. If that's not the case, you should be using collision.gameObject.name

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

17 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

Related Questions

A node in a childnode? 1 Answer

Timer help please 1 Answer

Unexpected Token BCE0043 0 Answers

Swipe in Unity3d 3 Answers

Mid point of a object 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