VR4Medical/ICI/Library/PackageCache/com.unity.performance.profile-analyzer@a68e7bc84997/Editor/TimingOptions.cs
2025-07-29 13:45:50 +03: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";
}
}