UnityEditor.ProfilerWindow.DrawBackground C# (CSharp) Метод

DrawBackground() приватный статический Метод

private static DrawBackground ( int row, bool selected ) : void
row int
selected bool
Результат void
        private static void DrawBackground(int row, bool selected)
        {
            Rect position = new Rect(1f, 16f * row, GUIClip.visibleRect.width, 16f);
            GUIStyle style = ((row % 2) != 0) ? ms_Styles.entryOdd : ms_Styles.entryEven;
            if (Event.current.type == EventType.Repaint)
            {
                style.Draw(position, GUIContent.none, false, false, selected, false);
            }
        }