Colorize
Definition
public static partial class DrawGUI
{
// Factory methods
public static Scope Colorize(Color color)
public static Scope ColorizeBackground(Color color)
public static Scope ColorizeLabel(Color color)
// Extension methods (chaining)
public static Scope Colorize(this Scope scope, Color color)
public static Scope ColorizeBackground(this Scope scope, Color color)
public static Scope ColorizeLabel(this Scope scope, Color color)
// Implementation
private class ColorizeScope : Scope
}Remarks
Mode
Binary
Property
Factory Methods
Colorize
ColorizeBackground
ColorizeLabel
Parameter
Type
Description
Common Pitfalls
Examples
Tint All Content
Tint Background Only
Chain with Other Scopes
Conditional Colorization
See Also
Last updated