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
2
Question by sona.viswam · Aug 23, 2013 at 04:18 AM · c#checkbox

CheckBox in unity3d

I created check box using code

 public bool allOptions = true;

ONGUI

 allOptions = GUI.Toggle(new Rect(300, 300, 80, 50), allOptions, "ON/OFF");

How can i increase size and color of check box

Comment
Add comment · Show 1
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 sona.viswam · Aug 23, 2013 at 06:02 AM 0
Share

iF i want to customize checkbox how can i do it

1 Reply

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

Answer by clunk47 · Aug 23, 2013 at 06:17 AM

alt textEDIT: Try this workaround. Use a GUI Button to toggle allOptions boolean, and use GUI.Content to set an image that becomes active / inactive depending on the allOptions bool being true or false, which is toggled by the button click. Use a label to the side of the button for your On/Off text, which can have its own style like in my exmaple.

 using UnityEngine;
 using System.Collections;
 
 public class Example : MonoBehaviour 
 {
     public Texture2D texture;
     GUIContent content = new GUIContent();
     string label = "ON/OFF";
     Rect checkBoxRect;
     Rect labelRect;
     bool allOptions = true;
     GUIStyle labelStyle;
     
     void Awake()
     {
         labelStyle = new GUIStyle();
         labelStyle.fontSize = 32;
         labelStyle.normal.textColor = Color.red;
         labelStyle.fontStyle = FontStyle.Bold;
         checkBoxRect = new Rect(0, 0, 64, 64);
         labelRect = new Rect(68, 16, 128, 32);
     }
     
     void Update()
     {
         if(allOptions)
             content.image = texture;
         else
             content.image = null;
     }
     
     void OnGUI()
     {
         GUI.Label(labelRect, label, labelStyle);
         
         if(GUI.Button (checkBoxRect, content.image))
             allOptions = !allOptions;
     }
 }



1.png (5.5 kB)
Comment
Add comment · Show 4 · 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 sona.viswam · Aug 23, 2013 at 06:28 AM 0
Share

still check box is small.i have to add images for it

avatar image clunk47 · Aug 23, 2013 at 06:49 AM 1
Share

Edited answer to address your question more appropriately.

avatar image sona.viswam · Aug 23, 2013 at 06:56 AM 2
Share

That's cool. Thanks you

avatar image clunk47 · Aug 23, 2013 at 07:00 AM 1
Share

No problem, always happy to be of help :)

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

17 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 avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

A node in a childnode? 1 Answer

Distribute terrain in zones 3 Answers

Unity: C#: Eyes look at mouse: HELP!! 3 Answers

C# how to make Character Motor Jump Infinitely Upward 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