유니티 C# 텍스트 색상 코드로 변경하는 방법 Text Color

반응형

코드 작성

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

public class Example : MonoBehaviour
{
    public Text nickNameText;

    void Start()
    {
        nickNameText.text = "<color=#00C8FF>" + "닉네임" + "</color>"; //파란색으로 변경

        nickNameText.text = "<color=#FF0000>" + "닉네임" + "</color>"; //초록색으로 변경
    }
}
반응형