DrawTextCodepoints method

void DrawTextCodepoints(
  1. FontC font,
  2. Pointer<Int> codepoints,
  3. int codepointCount,
  4. Vector2C position,
  5. double fontSize,
  6. double spacing,
  7. ColorC tint,
)

Draw multiple character (codepoint)

Implementation

void DrawTextCodepoints(FontC font, Pointer<Int> codepoints, int codepointCount, Vector2C position, double fontSize, double spacing, ColorC tint)
  => _DrawTextCodepoints(font, codepoints, codepointCount, position, fontSize, spacing, tint);