Array of RGBA color components, where each component is a number between 0 and 1.
The array must contain exactly 4 numbers in the order: red, green, blue, alpha.
Example
// Full white (opaque) constwhite:RgbaArray= [1, 1, 1, 1];
// Semi-transparent red consttransparentRed:RgbaArray= [1, 0, 0, 0.5];
Array of RGBA color components, where each component is a number between 0 and 1. The array must contain exactly 4 numbers in the order: red, green, blue, alpha.