top of page

TOSHICHAN
Unityでスクリプト&簡単な実装サイト
数字から文字へ型変換
public int TEST;
// Update is called once per frame
void Update () {
//数字から文字へ型変換
string text1 = (TEST).ToString();
}
bottom of page
public int TEST;
// Update is called once per frame
void Update () {
//数字から文字へ型変換
string text1 = (TEST).ToString();
}