GUILabel.Draw C# (CSharp) Method

Draw() public method

public Draw ( ) : void
return void
	public override void Draw ()
	{
		if (!visible) return;
		GUILayout.BeginArea(rect); //,Styles.roundDarkBox);
			GUILayout.Label(text,Styles.largeTextLight);
		GUILayout.EndArea();
	}
}

Usage Example

Example #1
0
    private void DrawLabels()
    {
        guiBox.Draw();

        XPLevel.Draw();
        TotalXP.Draw();
        TotalItemCount.Draw();
    }
All Usage Examples Of GUILabel::Draw