カスタムラベルの付いたコードの一部のプロファイリングを終了します
これは Profiler ヒエラルキーに表示されます。
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.BeginSample、Profiler.