setFontColor method

void setFontColor(
  1. int red,
  2. int green,
  3. int blue,
  4. int alpha,
)

Sets the font colour and forces the core to redraw. Treats red, green, blue and alpha as 1 byte channels.

Implementation

void setFontColor(int red, int green, int blue, int alpha) {
  setFontColorNative?.call(_sdk, red, green, blue, alpha);
}