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 sbrown995 · Mar 07, 2013 at 09:48 PM · inspectortoggle

How to indent EditorGUILayout.BeginToggleGroup()

In my editor script I have a couple nested foldouts. I am using EditorGUI.indentLevel++ and EditorGUI.indentLevel-- to change the indent level of the inspector, however this doesn't affect the EditorGUILayout.BeginToggleGroup(). The indentation applies itself to the contents within the toggle group, but not for the toggle group itself. If and how I can make the indentation apply to the toggle group as well?

Here is the example of one such foldout:

 ob.xBounds = EditorGUILayout.Foldout (ob.xBounds, "X Bounds");
 if (ob.xBounds) {
     EditorGUI.indentLevel++;
     ob.useMinX = EditorGUILayout.BeginToggleGroup ("Minimum", ob.useMinX);
     ob.minX = EditorGUILayout.FloatField ("Min X", ob.minX);
     EditorGUILayout.EndToggleGroup ();
     ob.useMaxX = EditorGUILayout.BeginToggleGroup ("Maximum", ob.useMaxX);
     ob.maxX = EditorGUILayout.FloatField ("Max X", ob.maxX);
     EditorGUILayout.EndToggleGroup ();
     ob.useFixedX = EditorGUILayout.BeginToggleGroup ("Fixed X Position", ob.useFixedX);
     ob.fixedX = EditorGUILayout.FloatField ("Fixed at", ob.fixedX);
     EditorGUILayout.EndToggleGroup ();
     EditorGUI.indentLevel--;
 }
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
3

Answer by Razeeo · Aug 28, 2013 at 02:41 AM

So, I battled with this for a considerable amount of time recently too. I think there may be a bug (who knows) with toggle group formatting. What you need to do is encapsulate your entire block inside a horizontal layout element so that you can manually shift it using the GUILayout.Space function, and then inside that, encapsulate your actual toggle group inside a vertical layout element, otherwise the contents of your toggle group won't be lined up vertically. Here's an example:

 EditorGUILayout.BeginHorizontal();
 GUILayout.Space(55);
 EditorGUILayout.BeginVertical();
 
 EditorGUILayout.BeginToggleGroup("PleaseIndent", toggleVar);
 EditorGUILayout.FloatField("ToggleGroupAttribute", floatVar);
 EditorGUILayout.EndToggleGroup();
 
 EditorGUILayout.EndVertical();
 EditorGUILayout.EndHorizontal();

Enjoy.

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

11 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

Related Questions

Toggles in Inspector Not Working Properly 2 Answers

Missing Inspector 1 Answer

UI Toggle OnValueChanged sometimes forces me to select an input. 1 Answer

Mixed-state toggles for multi-object editing? 1 Answer

Inspector browsing problem 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