• 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 RyFridge · Jun 28, 2015 at 06:39 PM · listnested

Nested Lists "Add" method problem

Hello there,

for reasons I need a List of Vector2-Lists:

 List<List<Vector2>> occludedObjects;
     
 void someInitFunction(){
     occludedObjects = new List<List<Vector2>>();
     List<Vector2> occludedPoints = new List<Vector2> ();
     occludedObjects.Add (occludedPoints);
 }

Now when I add a new Vector2 to a sublist, every sublist will overwrite it's content with this Vector2. Clearing any sublist seems to clear the other sublists, too. Here is how I'm trying to do things:

 occludedObjects[0].Clear();
 occludedObjects[0].Add (new Vector2(0f, 0f));
 occludedObjects[0].Add (new Vector2(0f, 1f));

I guess I am missing some basic nested lists business :( If this is not the source of the problem, i will try and dig deeper into my script.

Help (especially noob friendly) is very, very appreciated!

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

1 Reply

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

Answer by Dave-Carlile · Jun 28, 2015 at 07:11 PM

This is adding the exact same list instance each time...

  List<Vector2> occludedPoints = new List<Vector2> ();
  occludedObjects.Add (occludedPoints);

They all point to the same object, so it doesn't matter which object reference you use, it's going to add to the same list. You need to create a new instance each time, so...

  occludedObject.Add(new List<Vector2>());

Now each list entry in occludedObjects will point to a separate instance.

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 RyFridge · Jun 29, 2015 at 07:58 AM 0
Share

Wow, thank you so much. It works perfectly. I thought it would add a new copy / instance of the "occludedPoints" List, not reference back to it. But it's totally logical.

Now I feel really stupid :)

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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

A node in a childnode? 1 Answer

Serialize Nested Lists 3 Answers

Tried to make a List.>(), it doesn't work, so how do I do that? 1 Answer

List Problem 1 Answer

Possible shader interference when updating matrix 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