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 Ochreous · May 21, 2013 at 01:28 AM · c#guilayout

C# Putting a Series of Labels in Between a Series of Buttons

Hi everyone, can you put a series of GUIlayout.Labels in Between a Series of GUIlayout.Buttons? I have two for loops one for the buttons and the other for the labels and I would like to arrange them so the labels are in between the buttons.

 public string[] someText;
 
 void OnGUI(){
 someText= new string[] {"Text4","Text5","Text6"};
 for(int i = 0; i < someText.Length; i++){
 GUILayout.Label(text[i]);
    }
 someText= new string[] {"Text1","Text2","Text3"};
 for(int i = 0; i < someText.Length; i++){
 GUILayout.Button(text[i], GUILayout.Width(142), GUILayout.Height(25))
    }
 }
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
Best Answer

Answer by Fornoreason1000 · May 21, 2013 at 02:24 AM

combine the loops... make an if block checking if "i" is odd or even, draw button if odd, draw label if even. (hint: if (i % 2), its odd)

algorithm:

 for (int i = 0; i < length of string, i++) {
 if i % 2 draw Button
 else draw label
 
 }
Comment
Add comment · Show 2 · 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 Ochreous · May 21, 2013 at 04:44 AM 0
Share

I'm getting an error from the console and it says cannot implicitly convert type "int" to type bool. The console points to the if (i % 2) as the cause. Why does it want a boolean?

 using UnityEngine;
 using System.Collections;
 
 public class SomeGUI : $$anonymous$$onoBehaviour {
     public string[] someText;
     void OnGUI () {
     someText= new string[] {"Text1","Text2","Text3","Text4","Text5","Text6"};
 for(int i = 0; i < someText.Length; i++){
 if (i % 2){
 GUILayout.Button(someText[i], GUILayout.Width(142), GUILayout.Height(25));
             }
 else{
 GUILayout.Label(someText[i]);
             }
        }
     }
 }
 
avatar image Fornoreason1000 · May 21, 2013 at 05:14 AM 0
Share

that's because you used the wrong syntax. your checking if i is divisible by 2. so when i % 2 is 0 then its even... sorry for for being unclear here you go:

 if (i % 2 == 0)

the "%" operator gets the remainder of a division,

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

its asking for a Boolean because your using "i % 2" as a Boolean value(when its not). the compiler does this because if(mybool) is exactly the same as if(mybool == true)

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

14 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

Related Questions

C# OnMouseExit Kill/Destroy GUILayout Element 1 Answer

C# How to Make Stack of Buttons and Labels not Even 1 Answer

How to check if an object is colliding with another from another script ? 1 Answer

How to check if string array contains duplicates C# 1 Answer

Finding Distance between Angles and Points 2 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