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
1
Question by juanelo · Jul 23, 2011 at 11:58 PM · sortcomparison

sort array of transforms by name

Hi, I've been trying to sort a list of transforms by name in c# to no avail. I've read the 'sort' documentation, but I can't get it to work. I also can't get CompareTo to work in any way, even though i've added System.Collections.Generic.

I would greatly appreciate an example.

Thanks, -Juanelo

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

· Add your reply
  • Sort: 
avatar image
2

Answer by Bunny83 · Jul 24, 2011 at 01:45 AM

I guess the easiest way is to use the Comparison version of Sort().

http://msdn.microsoft.com/en-us/library/w56d4y5z.aspx

You just need to define a method that takes two references of the type you want to compare and that returns an integer.

The Comparison delegate:
http://msdn.microsoft.com/en-us/library/tfakywbh.aspx

 public class Example : MonoBehaviour
 {
     public List<Transform> myList;
     
     private static int CompareTransform(Transform A, Transform B)
     {
         return A.name.CompareTo(B.name);
     }
     public void SortList()
     {
         myList.Sort(CompareTransform);
     }
     [...]
 }

That should do what you want, haven't tested it ...

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 juanelo · Jul 24, 2011 at 06:31 PM 0
Share

Thank you Bunny, I'll give that a shot. I really appreciate your help.

avatar image
0

Answer by Chuckalicious · Jul 27, 2015 at 06:59 AM

I've seen the same issue. Bunny what you have is basically the same as:

using System.Linq;

_myList.Sort((x, y) => x.name.CompareTo(y.name));

However, this still does not seem to sort correctly. I have a list of transforms all named Tile_1, Tile_2, Tile_3, ...

I still can get this to sort in order of 1, 2, 3, 4,....

What gives?

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Is it possible to sort an array determined by an external comparison? 1 Answer

c# 2D array error: need Help! 1 Answer

Can't disable script 1 Answer

Combining Items in a single list by comparison 1 Answer

Problem with 2+ of the same scripts on the same object and functions 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