mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-26 05:27:01 +00:00
Documentation
This commit is contained in:
parent
bfe894406d
commit
46fbff50cf
@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
|
The code in imgui.cpp embeds a copy of 'ProggyClean.ttf' that you can use without any external files.
|
||||||
|
|
||||||
---------------------------------
|
---------------------------------
|
||||||
EXTRA FONTS FOR IMGUI
|
EXTRA FONTS FOR IMGUI
|
||||||
---------------------------------
|
---------------------------------
|
||||||
@ -6,16 +8,34 @@
|
|||||||
ProggyClean.ttf
|
ProggyClean.ttf
|
||||||
Copyright (c) 2004, 2005 Tristan Grimmer
|
Copyright (c) 2004, 2005 Tristan Grimmer
|
||||||
MIT License
|
MIT License
|
||||||
|
recommended loading setting in ImGui: Size = 13.0, DisplayOffset.Y = +1
|
||||||
|
|
||||||
ProggyTiny.ttf
|
ProggyTiny.ttf
|
||||||
Copyright (c) 2004, 2005 Tristan Grimmer
|
Copyright (c) 2004, 2005 Tristan Grimmer
|
||||||
MIT License
|
MIT License
|
||||||
|
recommended loading setting in ImGui: Size = 10.0, DisplayOffset.Y = +1
|
||||||
|
|
||||||
Karla-Regular
|
Karla-Regular
|
||||||
Copyright (c) 2012, Jonathan Pinhorn
|
Copyright (c) 2012, Jonathan Pinhorn
|
||||||
SIL OPEN FONT LICENSE Version 1.1
|
SIL OPEN FONT LICENSE Version 1.1
|
||||||
|
|
||||||
imgui.cpp embeds a copy of 'ProggyClean.ttf' that you can use without any external files.
|
---------------------------------
|
||||||
|
OTHER FONTS
|
||||||
|
---------------------------------
|
||||||
|
|
||||||
|
For Japanese:
|
||||||
|
|
||||||
|
M+ fonts by Coji Morishita are free and include most useful Kanjis you would need.
|
||||||
|
mplus-fonts.sourceforge.jp/mplus-outline-fonts/index-en.html
|
||||||
|
|
||||||
|
For Japanese, Chinese, Korean:
|
||||||
|
|
||||||
|
You can use Arial Unicode or other Unicode fonts provided with Windows (not sure of their license).
|
||||||
|
Other suggestions?
|
||||||
|
|
||||||
|
---------------------------------
|
||||||
|
LOADING INSTRUCTIONS
|
||||||
|
---------------------------------
|
||||||
|
|
||||||
Load .TTF file with:
|
Load .TTF file with:
|
||||||
|
|
||||||
@ -33,10 +53,3 @@ Offset font by altering the io.Font->DisplayOffset value:
|
|||||||
ImFont* font = io.Fonts->AddFontFromFileTTF("myfontfile.ttf", size_pixels);
|
ImFont* font = io.Fonts->AddFontFromFileTTF("myfontfile.ttf", size_pixels);
|
||||||
font->DisplayOffset.y += 1; // Render 1 pixel down
|
font->DisplayOffset.y += 1; // Render 1 pixel down
|
||||||
|
|
||||||
-----------------------------------
|
|
||||||
RECOMMENDED SIZES
|
|
||||||
-----------------------------------
|
|
||||||
|
|
||||||
ProggyTiny.ttf Size: 10.0f Offset: Y: +1
|
|
||||||
ProggyClean.ttf Size: 13.0f Offset: Y: +1
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user