[Unity] デバッグログを出す方法 - Qiita

Debug.Log(honyarara) で変数の中身表示したりできます.

var num = 128;
Debug.Log(num);
Debug.Log("Hello, world!");

Console ウィンドウに出力結果が表示されます.

ss.png

最後の出力結果は左下に出てたりもします.

ss2.png

ちなみに Deubg.Break() で一時停止できます.

Sign up for free and join this conversation.

Sign Up

If you already have a Qiita account

log in.