Color32

value class Color32

Represents a 32-bit representation of RGBA color.

On the JVM, non-nullable values of this type are represented as values of the primitive type int.

Constructors

Link copied to clipboard
constructor(r: UByte, g: UByte, b: UByte, a: UByte)

Constructs a new Color32 instance with given r, g, b, a components.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
inline operator fun component1(): UByte

Red component of the color.

Link copied to clipboard
inline operator fun component2(): UByte

Green component of the color.

Link copied to clipboard
inline operator fun component3(): UByte

Blue component of the color.

Link copied to clipboard
inline operator fun component4(): UByte

Alpha component of the color.

Link copied to clipboard
operator fun get(index: Int): UByte

Returns a component specified by an index.

Link copied to clipboard
open override fun toString(): String

Returns a String representation of this color in "Color32(r=r, g=g, b=b, a=a)" format.

Properties

Link copied to clipboard
val a: UByte

Alpha component of the color.

Link copied to clipboard
val b: UByte

Blue component of the color.

Link copied to clipboard
val g: UByte

Green component of the color.

Link copied to clipboard
val r: UByte

Red component of the color.