Assets.Scripts.Console.ArgumentCandinateState.DrawLabel C# (CSharp) Method

DrawLabel() protected method

protected DrawLabel ( string InText ) : void
InText string
return 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));
        }