MCPcopy Create free account
hub / github.com/Bloom-Engine/engine / drawTextEx

Function drawTextEx

src/text/index.ts:41–43  ·  view source on GitHub ↗
(font: Font, text: string, pos: Vec2, size: number, spacing: number, color: Color)

Source from the content-addressed store, hash-verified

39}
40
41export function drawTextEx(font: Font, text: string, pos: Vec2, size: number, spacing: number, color: Color): void {
42 bloom_draw_text_ex(font.handle, text as any, pos.x, pos.y, size, spacing, color.r, color.g, color.b, color.a);
43}
44
45export function measureTextEx(font: Font, text: string, size: number, spacing: number): Vec2 {
46 const width = bloom_measure_text_ex(font.handle, text as any, size, spacing);

Callers

nothing calls this directly

Calls 1

bloom_draw_text_exFunction · 0.50

Tested by

no test coverage detected