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 DA_ATeam · May 23, 2011 at 04:43 PM · instantiateraycastobjectdestroy

Raycast Specific Object/Instantiate Explosion

Hello Again!

In my current(Unity 3.3 IOS)project I have a character walking across a bridge. If the character falls off the bridge he is to fall into a fiery river and explode. The problem is when he's on the bridge the Raycast reads the rigidbody on the bridge and he immediately explodes. If I reposition him in the scene window to an open air position, the gravity causes him to fall into the river and explode as planned. I added the following line of code to designate only destroy if the raycast hits the "plane". It doesn't work.

 if(hit.collider.gameObject.name == "plane");

The character does not get destroyed on the bridge or when he hits the plane/fiery river. There are several bridges and buildings he will be walking into, so I only want him to be destroyed/explode if the raycast hits the plane. Can anyone tell me why my code isn't working or how to correct it? Here is my complete Raycast code.

 var explosion: Transform;
 var point :Vector3;
 var explosionRotation :Quaternion;

 function Update(){
 
 var hit :RaycastHit;
 var dwn = transform.TransformDirection(Vector3.down);
 if (Physics.Raycast(this.transform.position,dwn,hit,3))
 if(hit.collider.gameObject.name == "plane")
 
 
 {
     point = hit.point;
     explosionRotation = Quaternion.FromToRotation(Vector3.up, hit.normal);
     Explode();
 }
 }

 function Explode()
 {
 
 Destroy(this.gameObject);
 var instanExplosion = Instantiate(explosion, point, explosionRotation);
 
 }    

Thanks for any advice and assistance in advance.

Respectfully,

Digital D

Comment
Add comment · Show 2
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 pyro · May 23, 2011 at 04:56 PM 0
Share

the code looks fine, are you sure your test object name is correct? it's "plane" and not "Plane"? string comparison is case sensitive

you could probably benefit from using gameObject tags though ins$$anonymous$$d of checking the game objects name

avatar image DA_ATeam · May 24, 2011 at 09:47 PM 0
Share

Thanks pyro! You were correct. In the Hierarchy window the name was "Plane". It works as designed now.

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by flaviusxvii · May 23, 2011 at 07:09 PM

Why are you using a raycast? Use colliders and events for something like this.

Comment
Add comment · Show 3 · 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 DA_ATeam · May 24, 2011 at 09:56 PM 0
Share

I used raycast because I want the explosion to happen just above the fiery lake. With raycast I can control the distance from the event, ins$$anonymous$$d of when the objects collide. Just a little detail thing I guess.

avatar image Fattie · Oct 20, 2011 at 07:18 PM 0
Share

flavi is correct. you are basically doing it wrong: just use colliders, triggers, and events. Raycasts are irrelevant here! Hope it helps someone reading.

avatar image DA_ATeam · Oct 20, 2011 at 09:36 PM 0
Share

@fattie Thanks!

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

how to raycast instantiated game characters 1 Answer

Destroying object using his name and raycast 2 Answers

How to delete an instantiated object 0 Answers

Object won't instantiate at parents position(solved) 2 Answers

Destroy the current GameObject? 7 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