facebook twitter hatena line email

Unity/Csharp/Log

提供: 初心者エンジニアの簡易メモ
2022年11月16日 (水) 03:28時点におけるAdmin (トーク | 投稿記録)による版 (ログの記述方法)

移動: 案内検索

ログの記述方法

using UnityEngine;
Debug.Log("ログです");
Debug.LogError("エラーログです");
Debug.Log("hoge=" + hoge);
Debug.Log($"hoge={hoge}");

ログは、Consoleに表示される。

Consoleは、Unityメインメニュー/Window/General/Consoleで、開く。