Optimized the speed of simulate build

This commit is contained in:
hevinci
2022-05-06 20:09:36 +08:00
parent 091758022f
commit 65875b66c2
4 changed files with 35 additions and 10 deletions

View File

@@ -45,14 +45,22 @@ namespace YooAsset.Editor
}
/// <summary>
/// 普通日志输出
/// 日志输出
/// </summary>
public static void Log(string info)
{
if (EnableLog)
{
UnityEngine.Debug.Log(info);
}
}
}
/// <summary>
/// 日志输出
/// </summary>
public static void Info(string info)
{
UnityEngine.Debug.Log(info);
}
}
}