Version: 2017.3
public static void EndSample ();

説明

カスタムラベルの付いたコードの一部のプロファイリングを終了します

これは Profiler ヒエラルキーに表示されます。

using UnityEngine;
using System.Collections;
using UnityEngine.Profiling;

public class ExampleClass : MonoBehaviour { void Example() { Profiler.BeginSample("MyPieceOfCode"); Profiler.EndSample(); } }

関連項目: Profiler.BeginSample, Profiler.