CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/TimingOptions.cs
Spudnut2000 86e8b2168c Init
2024-10-01 23:23:13 -05:00

20 lines
424 B
C#

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";
}
}