【Unity】色から16進数文字列へ変換

DEVELOP

たまーに使う。

using UnityEngine;
public static string ColorToHex(Color32 color)
{
    string hex = color.r.ToString("X2") + color.g.ToString("X2") + color.b.ToString("X2") + color.a.ToString("X2");
    return hex;
}

Posted by kazupon