A constant representing a fully opaque color black.
A constant representing a fully opaque color black.
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 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;