Ejemplo n.º 1
0
        public static void LabelInMiddleOfControlRect(Rect controlRectangle, string labelText, float controlHeight, GUIStyle style)
        {
            Rect labelRectangle = controlRectangle;

            labelRectangle.yMin += controlHeight * 0.05f;
            labelRectangle.xMin  = controlRectangle.center.x - EditorGUILayoutEx.CalculateTextSize(labelText).x * 0.5f;

            GUI.Label(labelRectangle, labelText, style);
        }