Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

CustomSampler.Create

public static Profiling.CustomSampler Create(string name);

Parameters

name Name of the Sampler.

Returns

CustomSampler CustomSampler object or null if a built-in Sampler with the same name exists.

Description

Creates a new CustomSampler for profiling parts of your code.

Multiple calls with the same name parameter return different CustomSampler objects which refer to the same native representation.

Method throws ArgumentNullException when used with null string and ArgumentException when used with existing built-in Profiler label.

using UnityEngine;
using UnityEngine.Profiling;

public class ExampleClass : MonoBehaviour { CustomSampler sampler; void Start() { sampler = CustomSampler.Create("MyCustomSampler"); }

void Update() { sampler.Begin(); // do something that takes a lot of time sampler.End(); } }

Did you find this page useful? Please give it a rating: