Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

230
Views
How can i change the color if the value is 25? Because the value "<= 50" is taking over with the yellow color of the "25" value

My "Health <= 50" is changing color if it's under 50. But when i hit 25 i wanna change it to red. (Im in Unity, C#) As tagged. I've tried many compbs and researched but aint found any answers. Thanks for reading!

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

public class SomethingFunction : MonoBehaviour
{
    [SerializeField] Text Informationsystem;
    public int Health 100;

    void Start()
    {
        TxtUI= GetComponent<Text>();
    }

    void Update()
    {
        Test();
    }

    public void Test()
    {
        if(health <= 50)
        {
            TxtUI.color = Color.yellow;
        }
        else if(health <= 25)
        {
            TxtUI.color = Color.red;
        }
        else if(health >= 50)
        {
            TxtUI.color = Color.white;
        }
    }
}```
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Please research how if-else statements work.

The problem here is that if, for example, the health is 19: Then the color will be set to yellow, because 19<50.

Because of the else if statement the other checks are not executed. You can either change the order of if-else statements or remove the else part:

if (health <= 25)
        {
            TxtUI.color = Color.red;
        }
        else if (health <= 50)
        {
            TxtUI.color = Color.yellow;
        }
        else if (health > 50)
        {
            TxtUI.color = Color.white;
        }
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!