[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/Profiling.CustomSampler.Create.html [Back]  [Original]

Unity - Scripting API: Profiling.CustomSampler.Create
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    CustomSampler.Create

    Suggest a change

    Success!

    Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

    Close

    Submission failed

    For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

    Close
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Declaration

    public static CustomSampler Create(string name, bool collectGpuData);

    Parameters

    Parameter Description
    name Name of the Sampler.
    collectGpuData Specifies whether this Sampler records GPU timings. If you want the Sampler to record GPU timings, set this to true.

    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. CustomSampler represents scripting profiler label.

    Method throws ArgumentNullException when used with null string.

    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(); } }

    Additional resources: CustomSampler.Begin, Sampler.Get.


    Web Proxy Viewer  |  New URL  |  Original Page