HexaDecimal 색상값을 Text 오브젝트에 적용하기(글자색 변경하기)
Color color;
ColorUtility.TryParseHtmlString("#FF3737", out color);
this.amountText.color = color;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
this.amountText.text = this.rewardAmount.ToString();
Color color;
if (data.type==0)
{
ColorUtility.TryParseHtmlString("#FF3737", out color);
this.amountText.color = color;
}
else if (data.type == 1)
{
ColorUtility.TryParseHtmlString("#4388D7", out color);
this.amountText.color = color;
}
else if (data.type == 2)
{
ColorUtility.TryParseHtmlString("#F1A917", out color);
this.amountText.color = color;
}
|
'C# > Problems' 카테고리의 다른 글
★★★ is missing the class attribute 'ExtensionOfNativeClass'! 해결법 (2) | 2020.08.04 |
---|---|
static 메서드에서 대리자 사용하기 (0) | 2020.07.21 |
Normal Mapping / Shader / Material - parameter (0) | 2020.06.04 |
TexturePacker 로 이미지 가져오기 / 배경 이동시키기 / Draw Mode Tiled (0) | 2020.05.28 |
8. ObjectPool 이용해서 데이터 꺼내기 / Scene사이에 데이터 넘기기 (0) | 2020.05.17 |