• 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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



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

Only delete the gameobject ONCE 2 Answers

Is it safe to use GameObject as a Dictionary key? 1 Answer

If statement seeming to give false positive 2 Answers

Cannot implicitly convert type 'int' to 'bool' error CS0029 1 Answer

My collision sensor (if statement) isn't working! please help! 1 Answer

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges