DrawTextEx method
void
DrawTextEx()
Implementation
void DrawTextEx(
FontD font,
String text,
Vector2D position,
num fontSize,
num spacing,
ColorD tint,
) => run(
() => 'DrawTextEx($font, $text, $position, $fontSize, $spacing, $tint)',
() => rl.Core.DrawTextEx(
_refFont1(font).ref,
refStr(text),
_refVector21(position).ref,
fontSize.toDouble(),
spacing.toDouble(),
_refColor1(tint).ref,
),
);