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
1
Question by yaezah · Oct 03, 2017 at 02:42 AM · gameobjectif statementoperatorswitch-caseif else

How to use multiple If statements? Or can I use relational operators in switch statements?

What I'm trying to do is add to my font size if the int "gold" is more than an x amount, and keep adding to font size if gold is a bigger number.

     if (gold > 1)
     {
         _lb.fontSize = _lb.fontSize + 5;
     }
     else
     {
         if (gold > 5)
         {
             _lb.fontSize = _lb.fontSize + 10;
         }
         else
         {
             if (gold > 10)
             {
                 _lb.fontSize = _lb.fontSize + 15;
             }
             else
             {
                 if (gold > 15)
                 {
                     _lb.fontSize = _lb.fontSize + 20;
                 }
                 else
                 {
                     if (gold > 20)
                     {
                         _lb.fontSize = _lb.fontSize + 25;
                     }
                     else
                     {
                         if (gold > 25)
                         {
                             _lb.fontSize = _lb.fontSize + 30;
                         }
                     }
                 }
             }
         }
     }

But what happens here is that most numbers are going to be more than the first if condition (which is 1) , and it doesn't do anything from there.

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 MaxGuernseyIII · Oct 03, 2017 at 02:48 AM

 var fontSizeDelta = 0;
 
 if (gold > 1)
   fontSizeDelta += 5;
 
 if (gold > 5)
   fontSizeDelta += 5;
 
 if (gold > 10)
   fontSizeDelta += 5;
 
 if (gold > 15)
   fontSizeDelta += 5;
 
 if (gold > 20)
   fontSizeDelta += 5;
 
 if (gold > 25)
   fontSizeDelta += 5;

 _lb.fontSize += fontSizeDelta;

...or...

 var fontSizeDelta = 0;
 var thresholds = new[] { 1, 5, 10, 15, 20, 25 };
 
 foreach (Var threshold in thresholds)
   if (gold > threshold) fontSizeDelta += 5;
     var fontSizeDelta = 0;
 
 _lb.fontSize += fontSizeDelta;
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 yaezah · Oct 03, 2017 at 03:19 AM 1
Share

Thank you for both examples ! for some reason the array example makes more sense to me . I keep getting confused with if else statements, Still trying to wrap my head around those. x|

avatar image MaxGuernseyIII yaezah · Oct 03, 2017 at 03:37 AM 0
Share

Probably, it makes more sense because there is less redundancy in it. For instance, what if you wanted to change the rule from "greater than" to "greater than or equal to"? With one implementation, you have to go to all the redundant if statements and modify them. With the other, you only need to update the single if statement.

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

101 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

Related Questions

Bool based on objects existing not changing. 2 Answers

If statement seeming to give false positive 2 Answers

GetComponent, int error, if statement, problem. 1 Answer

Finding nearest and with highest health points 1 Answer

Cannot implicitly convert type 'int' to 'bool' error CS0029 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