DrawTextEx method
void
DrawTextEx()
override
Implementation
@override
void DrawTextEx(
FontD font,
String text,
Vector2D position,
num fontSize,
num spacing,
ColorD tint,
) => run(
() => RaylibDebugLabels.DrawTextEx(font, text, position, fontSize, spacing, tint),
() => rl.Core.DrawTextEx(
rl.Temp.Font$.Ref1(font).ref,
rl.Temp.String$.ValueOrNull(text),
rl.Temp.Vector2$.Ref1(position).ref,
fontSize.toDouble(),
spacing.toDouble(),
rl.Temp.Color$.Ref1(tint).ref,
),
);