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
0
Question by passiondies1 · Jan 16, 2020 at 02:18 PM · togglesetactivetoggle button

Unity Multiple Toggle Buttons Reversing

I am making a unity project. The situation is that I have two toggle buttons (actually more than two) toggle1 and toggle2 and two gameobjects cube1 and cube2. On start both the toggles are unchecked and gameobjects are SetActive(false). What I want is if both buttons toggle1.isOn && toggle2.isOn then cube1 SetActive and if toggle2.isOn && toggle1.isOn then cube2 SetActive according to toggle orders i.e. which toggle is selected first. Now the problem is that When I Checked toggle1 then toggle2 in order both cubes appears and when I Checked toggle2 then toggle1 then again both cubes appears.

using System.Collections; using UnityEngine; using UnityEngine.UI;

public class ToggleToggle : MonoBehaviour {

 public Toggle toggle1;
 public Toggle toggle2;
 public GameObject cube;
 public GameObject cube2;

 // Use this for initialization
 void Start () {
     cube.SetActive (false);
     cube2.SetActive (false);
 }

 // Update is called once per frame
 void Update () {


     // Toggle1 Selected First then Toggle2
     if (toggle1.isOn && toggle2.isOn) {
         cube.SetActive (true);
     }

     // Toggle2 Selected First then Toggle1
     if (toggle2.isOn && toggle1.isOn) {
         cube2.SetActive (true);
     }
 }

}

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
1

Answer by Hellium · Jan 16, 2020 at 03:20 PM

Disclaimer : Code not tested

 public class ToggleToggle : MonoBehaviour
 {
     public Toggle toggle1;
     public Toggle toggle2;
     public GameObject cube;
     public GameObject cube2;
 
     void Start ()
     {
         cube.SetActive (false);
         cube2.SetActive (false);
 
         toggle1.onValueChanged.AddListener(OnToggle1ValueChanged);
         toggle2.onValueChanged.AddListener(OnToggle2ValueChanged);
     }
 
     private void OnToggle1ValueChanged(bool toggle1Value)
     {
         if(toggle2.isOn && toggle1Value)
             cube2.SetActive (true);
     }
 
     private void OnToggle2ValueChanged(bool toggle2Value)
     {
         if(toggle1.isOn && toggle2Value)
             cube1.SetActive (true);
     }
 }
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
avatar image
0

Answer by hameed-ullah-jan · Jan 16, 2020 at 02:52 PM

Both of these conditions does the same thing:

      if (toggle1.isOn && toggle2.isOn) {
              cube.SetActive (true);
          }
          // Toggle2 Selected First then Toggle1
          if (toggle2.isOn && toggle1.isOn) {
              cube2.SetActive (true);
          }
 

If you want to check if which toggle is activated first you can use two bool variables, set each bool on each toggle click, then you can check which variable was set first. hope this make sense, if you need more help you can comment

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

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

Related Questions

Set Bool in Inspector to true or False 2 Answers

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

Is there a method to create toggle group behavior for standard buttons 1 Answer

Toggle Button for Sound On/Off 1 Answer

Reset the last local players toggle button while keeping online players selection? 0 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