DrawTextEx method

void DrawTextEx(
  1. FontC font,
  2. Pointer<Char> text,
  3. Vector2C position,
  4. double fontSize,
  5. double spacing,
  6. ColorC tint,
)

Draw text using font and additional parameters

Implementation

void DrawTextEx(FontC font, Pointer<Char> text, Vector2C position, double fontSize, double spacing, ColorC tint)
  => _DrawTextEx(font, text, position, fontSize, spacing, tint);