docs.unity3d.com
    Show / Hide Table of Contents

    Measure.Scope(string name = "Time")

    Measures execution time for the scope as a single time, for both synchronous and coroutine methods. Passing the name argument overrides the name of the created SampleGroup. The defualt SampleGroup is named "Time" and with Milliseconds as measurement unit. You can also create your own SampleGroup, specifying a custom name and the measurement unit you want your results in, see example 2.

    Example 1: Measuring a scope; execution time is measured for everything in the using statement

    [Test, Performance]
    public void Test()
    {
        using(Measure.Scope())
        {
            ...
        }
    }
    

    Example 2: Specify Custom SampleGroup

    [Test, Performance]
    public void Test()
    {
        var sampleGroup = new SampleGroup("Scope", SampleUnit.Microsecond);
        using (Measure.Scope(sg))
        {
            ...
        }
    }
    
    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023