Assets.Scripts.Console.ArgumentCandinateState.DrawLabel C# (CSharp) Метод

DrawLabel() защищенный Метод

protected DrawLabel ( string InText ) : void
InText string
Результат void
        protected void DrawLabel(string InText)
        {
            var Content = new GUIContent(InText);

            var Size = GUI.skin.label.CalcSize(Content);

            GUILayout.Label(Content, GUILayout.Width(Size.x));
        }