playtest-unity/playtest/Library/PackageCache/com.unity.performance.profi.../Editor/TimingOptions.cs

20 lines
424 B
C#
Raw Normal View History

2023-06-19 23:21:21 -04:00
namespace UnityEditor.Performance.ProfileAnalyzer
{
internal class TimingOptions
{
public enum TimingOption
{
Time,
Self,
};
public static string[] TimingOptionNames =
{
"Total",
"Self",
};
public static string Tooltip = "Marker timings :\n\nTotal : \tIncluding children\nSelf : \tExcluding children";
}
}