カスタムラベルの付いたコードの一部のプロファイリングを開始します
これは Profiler ヒエラルキーに表示されます。 Profiler.BeginSample は ConditionalAttribute を使用して条件で除外してコンパイルされます。 ので、 non-Development Build で展開時にオーバーヘッドはゼロになるでしょう。
Profiler.BeginSample ("MyPieceOfCode"); // do something that takes a lot of time Profiler.EndSample ();
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { Profiler.BeginSample("MyPieceOfCode"); Profiler.EndSample(); } }
関連項目: Profiler.EndSample、Profiler.