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 /
  • Help Room /
This question was closed Jan 30, 2019 at 07:03 PM by el-mas-pro-470 for the following reason:

Problem is not reproducible or outdated

avatar image
0
Question by el-mas-pro-470 · Jan 30, 2019 at 02:13 PM · targetfindfindgameobjectswithtagtargetingassign-variable

FindGameObject assign in a variable? help!

Hello! I just need help on this ... how do I automatically assign an object with the same tag when another one is destroyed? (EnemyTarget) Thanks!

 using System.Collections;
 
 public class LookTarget : MonoBehaviour {
 
     public Transform[] target;
 
     void Update()
     {
         target = GameObject.FindGameObjectsWithTag("TargetEnemy"); 
 
         transform.LookAt(target);
     }
 }
 
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

  • Sort: 
avatar image
1

Answer by tormentoarmagedoom · Jan 30, 2019 at 02:29 PM

Good day.

First, must know that there are these 2 functions:

 GameObject.FindGameObjectsWithTag()  -> Objects , with S - Return an array of all ACTIVE objects in the scene with that tag

 GameObject.FindWithTag() ->  Return the first ACTIVE object found in the scene with that tag

So, if you want any other object, choose the 2nd option, but if you want to decide wichone to select, use something like:

 foreach (GameObject ObjectFound in GameObject.FindGameObjectsWithTag("TheTag")) 
 { 
 if (ObjectFound.something < SomeValue)
   {
    Something
    }
 }

So before destroy the object, store its tag in a string variable, to use it later in the Finding method!

Bye!!

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
avatar image
0

Answer by Magso · Jan 30, 2019 at 02:32 PM

You've set an array for target and not specified which target to look at. If it's just a single target, check if target is null like this

 public Transform target;
  
      void Update()
      {
          if(!target)
          {
          target = GameObject.FindWithTag("TargetEnemy").transform; 
          }
 
          transform.LookAt(target);
      }

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 el-mas-pro-470 · Jan 30, 2019 at 06:51 PM 0
Share

Hello! .. is something similar, only that it is with all the objects that have a "Target" tag and depending on the distance from them. Thanks!

Follow this Question

Answers Answers and Comments

99 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

Related Questions

Seemingly easy Targetting problem! 0 Answers

Switching Target 0 Answers

Constantly Targeting with an InvokeRepeating and Random Targeting 0 Answers

Referencing variable from another script on another object 3 Answers

How Can I assign a gameobject via script? 0 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