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 twotostudio · Sep 22, 2020 at 02:08 PM · listparentchild

Adding children to the list during the game.

I have objects stacked throughout the game. And each object added to the top becomes the child of the bottom object (lefthand). I'm trying to find the last child and reach his place. I'm trying to add kids to my list with the code below. However, when I check, children are not added to the list. There must be a mistake but I couldn't find what happened.

 public class move : MonoBehaviour
 {
    
   public GameObject lefthand;
   public GameObject righthand;
   public Animator anim;
   public float speed;
    public GameObject lefttrig;
    public List<GameObject> childleft = new List<GameObject>();
     
 
     private void Start()
     {
        
 
         if (lefthand.transform.childCount>0)
         {
             foreach (Transform t in lefthand.transform)
             {
                
                childleft.Add(t.gameObject);
            
             }
         }
        
     }
 
     private void Update()
   {
        
 
        GameObject lastchild = childleft[childleft.Count-1];
 
        if (lefthand.transform.childCount>1)
        {
           lefttrig.transform.position = lastchild.transform.position;
         }
       }
      
ekran-alıntısı.png (22.7 kB)
Comment
Add comment · Show 20
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 twotostudio · Sep 22, 2020 at 02:19 PM 0
Share

When I control the number of children it increases. There is no problem with it.

avatar image N-8-D-e-v twotostudio · Sep 22, 2020 at 02:32 PM 0
Share

Clear your list after you are done adding, also, look into other collection types I'm not sure which one, but one is more performant when adding things to first and last (I think LinkedList)

avatar image twotostudio N-8-D-e-v · Sep 22, 2020 at 02:38 PM 0
Share

I did not understand the cleaning after the addition was finished. The addition does not end throughout the game.

Show more comments

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by jmgek · Sep 22, 2020 at 07:22 PM

You should be really thinking about making a parent class and have a List<GameObject> children that you add to every time you attach a child.

 public class Child : Parent{
     void AddToParent(){
         //Add to parent transform
         base.children.Add(this);
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

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

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

Make a simple tree 1 Answer

A node in a childnode? 1 Answer

Find out if two children/gameObjects have the same parent. 2 Answers

Cannot cast from source type to destination type. 1 Answer

Saving components to the parent object (Unity 4) 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