Unity/Csharp/ログ
提供: 初心者エンジニアの簡易メモ
ログの記述方法
using UnityEngine; Debug.Log("ログです"); Debug.LogError("エラーログです");
ログは、Consoleに表示される。
Consoleは、Unityメインメニュー/Window/General/Consoleで、開く。
using UnityEngine; Debug.Log("ログです"); Debug.LogError("エラーログです");
ログは、Consoleに表示される。
Consoleは、Unityメインメニュー/Window/General/Consoleで、開く。
|