浏览代码

Update text_unicode_ranges.c

pull/5176/head
Ray 1 个月前
父节点
当前提交
f4250da042
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      examples/text/text_unicode_ranges.c

+ 2
- 1
examples/text/text_unicode_ranges.c 查看文件

@ -150,6 +150,7 @@ int main(void)
DrawRectangleLines(400, 16, 380, 380, RED);
DrawText(TextFormat("ATLAS SIZE: %ix%i px (x%02.2f)", font.texture.width, font.texture.height, atlasScale), 20, 380, 20, BLUE);
DrawText(TextFormat("CODEPOINTS GLYPHS LOADED: %i", font.glyphCount), 20, 410, 20, LIME);
// Display font attribution
DrawText("Font: Noto Sans TC. License: SIL Open Font License 1.1", screenWidth - 300, screenHeight - 20, 10, GRAY);
@ -158,7 +159,7 @@ int main(void)
{
DrawRectangle(0, 0, screenWidth, screenHeight, Fade(WHITE, 0.8f));
DrawRectangle(0, 125, screenWidth, 200, GRAY);
DrawText("LOADING CODEPOINTS...", 150, 210, 40, BLACK);
DrawText("GENERATING FONT ATLAS...", 120, 210, 40, BLACK);
}
EndDrawing();

正在加载...
取消
保存