Color32 Black { get; set; }

robot_2Generated
code_blocksInput

Description

A constant representing a fully opaque color black.

Usage

The Color32.Black property provides a convenient way to access a predefined color value representing black with full opacity. This can be used in various graphics and rendering contexts where a black color is needed.

Example

// Example of using Color32.Black
Color32 myColor = Color32.Black;

// Use myColor in a rendering context
// For example, setting the color of a material or drawing a shape
Material myMaterial = new Material();
myMaterial.Color = myColor;