Unity/Csharp/Log
提供: 初心者エンジニアの簡易メモ
2023年8月5日 (土) 03:05時点におけるAdmin (トーク | 投稿記録)による版 (Admin がページ「Unity/Csharp/ログ」を「Unity/Csharp/Log」に移動しました)
ログの記述方法
using UnityEngine; Debug.Log("ログです"); Debug.LogError("エラーログです"); Debug.Log("hoge=" + hoge); Debug.Log($"hoge={hoge}");
ログは、Consoleに表示される。
Consoleは、Unityメインメニュー/Window/General/Consoleで、開く。