厳密にはUnityじゃなくてC#の話。
16進数で出したい場合は、以下のように書く
int test = 35243;
Debug.Log(test.ToString("x4"));
x4 -> 89ab
X4 -> 89AB
Go to list of users who liked
More than 5 years have passed since last update.
厳密にはUnityじゃなくてC#の話。
16進数で出したい場合は、以下のように書く
int test = 35243;
Debug.Log(test.ToString("x4"));
x4 -> 89ab
X4 -> 89AB
Register as a new user and use Qiita more conveniently
Go to list of users who liked