VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.performance.profile-analyzer/Editor/TimingOptions.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +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";
}
}