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