青空の月

PHP, Unity, C#, アプリ開発関連について。

Debug.Logの制御

UnityEngine.Debugを上書きしちゃうイメージ。

http://qiita.com/items/39183e62ed2a1f52f690

購入したアセット内のログも制御できちゃうので導入しといて損は無さそう。

リリース用とデバッグ用で簡単に切り替えられるのは大きいメリット。スクリプトで制御すればリリースしたものも開発者だけはログを吐けるようにできるのは大きい。

導入する前にスクリプト内に「UnityEngine.Debug」で呼ばれていないかの確認はしておいた方が良さそう。「UnityEngine.Debug」で呼ばれているものはこのクラスを通らない。

 

 

「Unity Advent Calendar 2012 」に載っている関数以外も足してみた。

#if !UNITY_EDITOR
#define DEBUG_LOG_OVERWRAP
#endif


using UnityEngine;

#if !DEBUG_LOG_OVERWRAP
public static class Debug 
{
    static public void Break(){
        if( IsEnable() )    UnityEngine.Debug.Break();
    }


    #region DrawLine
	public static void DrawLine(Vector3 start, Vector3 end)
	{
		if (IsEnable())
			UnityEngine.Debug.DrawLine(start, end);
	}
	public static void DrawLine(Vector3 start, Vector3 end, Color color)
	{
		if (IsEnable())
			UnityEngine.Debug.DrawLine(start, end, color);
	}
	public static void DrawLine(Vector3 start, Vector3 end, Color color, float duration)
	{
		if (IsEnable())
			UnityEngine.Debug.DrawLine(start, end, color, duration);
	}
	public static void DrawLine(Vector3 start, Vector3 end, Color color, float duration, bool depthTest)
	{
		if (IsEnable())
			UnityEngine.Debug.DrawLine(start, end, color, duration, depthTest);
	}
	#endregion DrawLine



	#region DrawRay
	public static void DrawRay(Vector3 start, Vector3 dir)
	{
		if (IsEnable())
			UnityEngine.Debug.DrawRay(start, dir);
	}
	public static void DrawRay(Vector3 start, Vector3 dir, Color color)
	{
		if (IsEnable())
			UnityEngine.Debug.DrawRay(start, dir, color);
	}
	public static void DrawRay(Vector3 start, Vector3 dir, Color color, float duration)
	{
		if (IsEnable())
			UnityEngine.Debug.DrawRay(start, dir, color, duration);
	}
	public static void DrawRay(Vector3 start, Vector3 dir, Color color, float duration, bool depthTest)
	{
		if (IsEnable())
			UnityEngine.Debug.DrawRay(start, dir, color, duration, depthTest);
	}
	#endregion DrawRay


	#region log
	static public void Log(object message)
	{
		if (IsEnable())
			UnityEngine.Debug.Log(message);
	}
	static public void Log(object message, Object context)
	{
		if (IsEnable())
			UnityEngine.Debug.Log(message, context);
	}



	static public void LogWarning(object message)
	{
		if (IsEnable())
			UnityEngine.Debug.LogWarning(message);
	}
	static public void LogWarning(object message, Object context)
	{
		if (IsEnable())
			UnityEngine.Debug.LogWarning(message, context);
	}



	static public void LogError(object message)
	{
		if (IsEnable())
			UnityEngine.Debug.LogError(message);
	}
	static public void LogError(object message, Object context)
	{
		if (IsEnable())
			UnityEngine.Debug.LogError(message, context);
	}
	#endregion log



	static bool IsEnable(){ return UnityEngine.Debug.isDebugBuild; }
}
#endif