我有一个Button
我想根据从 0 到 4095 的整数将其颜色从黑色更改为红色。
当数字为 0 时它应该是黑色的,当这个数字增加时,比如说达到 4095 它应该是完全红色的!
ChangeColor(int num)
{
if(num== 0)
lightRight.SetBackgroundColor(new Color(0,0,0));
if(num> 4000)
lightRight.SetBackgroundColor(new Color(255,0,0));
//How to make a nice color that scales from 0 to 4095?
}
知道如何解决这个问题吗?