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 /
  • Help Room /
avatar image
0
Question by Losteone · May 25, 2016 at 04:25 PM · unity 5arrayboolean

If ALL in boolean Array = true ... else ...

Hello comm unity ))) I got some problems with boolean array. I need to check if ALL at once booleans are true or false, not exact one but ALL. So, I got code: public bool [] isOpen;
bool allFalse;

 for (int i = 0; i < isOpen.Length; ++i)
         {
             if (isOpen[i] == true)
             {
                 allFalse = false;
                 Debug.Log("false");
                 break;
             }
             else
             {
                 allFalse = true;
                 Debug.Log("true");                
             }
         }

But it set allFalse = false for each isOpen = false. And I need to allFalse = false if ALL isopen = false.

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

3 Replies

· Add your reply
  • Sort: 
avatar image
1

Answer by MotionBrain · Feb 15, 2018 at 05:45 PM

I changed a bit from Thajacoth and it worked for me like this might be a bit too late but for the others :)

For all true:

        bool allTrue = false;
             foreach (bool b in boolContainer)
             {
                 if (b)
                 {
                     allTrue = true;                            
                 }
                 else
                 {
                     allTrue = false;
                     break;
                 }
             }
     
             if(allTrue)
             {
                 Debug.Log("AllTrue");
             }
     

For all false:

    bool allTrue = true;
         foreach (bool b in boolContainer)
         {
             if (b)
             {
                 allTrue = false;                            
             }
             else
             {
                 allTrue = true;
                 break;
             }
         }
 
         if(!allTrue)
         {
             Debug.Log("AllFalse");
         }
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 Thajocoth · May 25, 2016 at 04:59 PM

You need to pull your false case out of the loop, like this:

 allFalse = false;
 foreach(bool b in isOpen)
 {
     if (b)
     {
         allFalse = true;
         break;
     }
 }
 Debug.Log(allFalse ? "true" : "false");
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 Losteone · May 25, 2016 at 05:07 PM 0
Share

Tnx, but I need it to return true if ALL of isOpen = false.

avatar image Thajocoth Losteone · May 25, 2016 at 05:21 PM 0
Share

You had specified that you wanted allFalse to be false if all elements of isopen are false, so that's what I gave you. What you want is the reverse, so flip true and false.

 allFalse = true;
 foreach(bool b in isOpen)
 {
     if (b)
     {
         allFalse = false;
         break;
     }
 }
 Debug.Log(allFalse ? "true" : "false");

In that code, allFalse is true when all values of IsOpen are false.

avatar image
0

Answer by Norite113 · Jan 05, 2020 at 05:31 AM

join this to script and have some fun coding :P

using System.Linq;

...

//returns true if all elements in array is true

private bool AllArrayInIsTrue(bool[] Array) {

return Array.OfType().ToList().TrueForAll(x => x);

}

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

92 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

Related Questions

is it possible toggle bool at editor by script? 1 Answer

Array size resets to 0 in inspector. 0 Answers

Changes for array not recognized on start 1 Answer

With the following script i wanted to activate a collider at the left/right side... 0 Answers

Saving the position of GameObjects into array? 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