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 _joseph · Dec 03, 2011 at 04:55 AM · guilayout

Help w/GUILayout Please

Hi,

I have a dictionary like this: Dictionary UsersInMatch

I need to display the data as:

Match#1

User_A

User_B

Match#2

User_C

User_D

Match#3

User_E

User_F

Like that, so here is what I Have tried, but I cannot seem to put two and two together.

Code: int matchNumber = 1;

 GUILayout.BeginArea(new Rect(Screen.width-220,300,220,100));
 GUILayout.BeginVertical("",s);
 
 foreach (KeyValuePair<string, string[]> Entry in UsersInMatch)
 {
     GUILayout.Label("Match #" + matchNumber.ToString(), s);
     GUILayout.Space(10);
     matchNumber++;
 }

 GUILayout.EndVertical();
 GUILayout.EndArea(); 

The vertical space works. I see the following:

Match #1

Match #2

Match #3

So here is what I would write as the inner iteration scheme to iterate through the values of the string[]:

Code:

 GUILayout.BeginArea(new Rect(Screen.width-220, 330, 220, 100));
 GUILayout.BeginVertical("", s);
 foreach (string name in Entry.Value)
 { 
     GUILayout.Label(name, s);
     GUILayout.Space(10);
 }
 GUILayout.EndVertical();
 GUILayout.EndArea(); 

Finally, putting two and two together we have:

Code:

 private void displayUsersInMatch() {
     int matchNumber = 1;
     
     GUILayout.BeginArea(new Rect(Screen.width-220, 300, 220, 100));
     GUILayout.BeginVertical("", s);
     foreach (KeyValuePair<string, string[]> Entry in UsersInMatch)
     {
         GUILayout.Label("Match #" + matchNumber.ToString(), s);
         GUILayout.Space(10);
         GUILayout.BeginArea(new Rect(Screen.width-220,330,220,100));
         GUILayout.BeginVertical("", s);
         foreach (string name in Entry.Value)
         {
             GUILayout.Label(name, s);
         }
         GUILayout.EndVertical();
         GUILayout.EndArea();
         matchNumber++;
      }
      GUILayout.EndVertical();
      GUILayout.EndArea();
  } 

And I don't see anything in between the Match# headings. If someone could shine some light on this it would really make my day!

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
1

Answer by syclamoth · Dec 03, 2011 at 05:26 AM

Basically, GUILayout.BeginArea cannot be nested. You should get rid of the second one, since it's screwing everything up. You need to use combinations of BeginHorizontal, BeginVertical, and Space(some disntace) to emulate the same behaviour.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Aligning an overlay to existing GUI elements 0 Answers

Open gui if player clicks on button 2 Answers

How do I create Text Fields on the fly? 1 Answer

GUIlayout scrollbar, Not working well... 1 Answer

Make GUILayout horizontal first, then vertical? (C#) 3 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