自定义标签,Profiler性能分析
//Profiler性能测试
Profiler.BeginSample("curve");
for (int i = 0; i < count; i++)
{
Debug.Log(i);
}
Profiler.EndSample();
自定义标签,Profiler性能分析
//Profiler性能测试
Profiler.BeginSample("curve");
for (int i = 0; i < count; i++)
{
Debug.Log(i);
}
Profiler.EndSample();