textScaleFactor method

NikuText textScaleFactor(
  1. double textScaleFactor
)

The number of font pixels for each logical pixel

Equivalnet to

Text(textScaleFactor: input)

Implementation

NikuText textScaleFactor(double textScaleFactor) {
  this._textScaleFactor = textScaleFactor;

  return this;
}