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 $$anonymous$$ · Apr 01, 2019 at 05:54 PM · findfindgameobjectswithtagfindwithtag

How to hit a specific object

Hi.

I want the tag to work as the tag.

When I shoot the - only falls the one which i touched.

But the tag objects fall together. When i touch balloon's karzina, i want the gravityScale to be changed.

Thanks in advance.

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI;

 public class Arrow_1 : MonoBehaviour {
 
     public float speed;
     public float lifeTime;
     public float distance;
     public int damage;
     public LayerMask whatIsSolid;
 
     GameObject[] karzina;
     
     
     
     
 
 
     void Start () {
         
         Invoke("DestroyArrow_1", lifeTime);    
     }
     
     void Update () {
         Vector2 screenPosition = Camera.main.WorldToScreenPoint(transform.position);
         if (screenPosition.y > Screen.height  || screenPosition.y < 0)
     {
         Destroy(gameObject);
     
     }
         RaycastHit2D hitInfo = Physics2D.Raycast(transform.position, transform.up, distance, whatIsSolid);
         if (hitInfo.collider != null) {
             if (hitInfo.collider.CompareTag("Balloon")) {
                 hitInfo.collider.GetComponent<Balloon>().TakeDamage(damage);
             }
     
         
         Destroy(gameObject);
             karzina=GameObject.FindGameObjectsWithTag("karzina");
 
             foreach (GameObject r in karzina){
 
             r.GetComponent<Rigidbody2D>().gravityScale = 2f; 
                 
         }
         
             
         }
 
         transform.Translate(Vector2.up * speed * Time.deltaTime * 1.5f);
     }
 
     
 }
 

Comment
Add comment · Show 1
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 $$anonymous$$ · Apr 01, 2019 at 06:48 PM 0
Share

ballon is a parent ,karzina is a child.

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by xxmariofer · Apr 01, 2019 at 06:54 PM

Change your update method to this one

 void Update () {
          Vector2 screenPosition = Camera.main.WorldToScreenPoint(transform.position);
          if (screenPosition.y > Screen.height  || screenPosition.y < 0)
      {
          Destroy(gameObject);
      
      }
          RaycastHit2D hitInfo = Physics2D.Raycast(transform.position, transform.up, distance, whatIsSolid);
          if (hitInfo.collider != null) {
              if (hitInfo.collider.CompareTag("Balloon")) {
                  hitInfo.collider.GetComponent<Balloon>().TakeDamage(damage);
                 hitInfo.collider.gameObject.transform.GetChild(0).GetComponent<Rigidbody2D>().gravityScale = 2f;
              }
                 
          Destroy(gameObject);
                       
          }
  
          transform.Translate(Vector2.up * speed * Time.deltaTime * 1.5f);
      }

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 $$anonymous$$ · Apr 01, 2019 at 06:58 PM 0
Share

O$$anonymous$$, thanks now try

avatar image $$anonymous$$ · Apr 01, 2019 at 07:03 PM 0
Share

sorry, but did not work

avatar image xxmariofer $$anonymous$$ · Apr 01, 2019 at 07:06 PM 0
Share

yes, the kazira is the first child of the balloon? any errors? yers only update

avatar image $$anonymous$$ xxmariofer · Apr 01, 2019 at 07:09 PM 0
Share

sorry, karzina is a parent, balloon is a child

Show more comments
avatar image $$anonymous$$ · Apr 01, 2019 at 07:04 PM 0
Share

only update change in code?

avatar image $$anonymous$$ · Apr 01, 2019 at 07:06 PM 0
Share

Oh sorry karzina is a parent, balloon is a child.

avatar image
0

Answer by xxmariofer · Apr 01, 2019 at 07:07 PM

 void Update () {
           Vector2 screenPosition = Camera.main.WorldToScreenPoint(transform.position);
           if (screenPosition.y > Screen.height  || screenPosition.y < 0)
       {
           Destroy(gameObject);
       
       }
           RaycastHit2D hitInfo = Physics2D.Raycast(transform.position, transform.up, distance, whatIsSolid);
           if (hitInfo.collider != null) {
               if (hitInfo.collider.CompareTag("Balloon")) {
                   hitInfo.collider.GetComponent<Balloon>().TakeDamage(damage);
                  hitInfo.collider.gameObject.transform.parent.GetComponent<Rigidbody2D>().gravityScale = 2f;
               }
                  
           Destroy(gameObject);
                        
           }
   
           transform.Translate(Vector2.up * speed * Time.deltaTime * 1.5f);
       }
Comment
Add comment · Show 2 · 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 $$anonymous$$ · Apr 01, 2019 at 07:12 PM 0
Share

Thanks you very much >>> all worked

avatar image xxmariofer $$anonymous$$ · Apr 01, 2019 at 07:17 PM 0
Share

mark the answer as correct for future readers please

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

102 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

Related Questions

Can't figure out how to access an object after creation.,Can't figure out how to access a given instance of the object on mouse click. 1 Answer

How Expensive is Find function? 3 Answers

What's the most efficient way of finding child objects at runtime? 1 Answer

Find object from another scene 1 Answer

Best method to manage multiple tags 2 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