This is extender for raylib's internal function LoadBMFont()
You can load mutiple atlas fnt font by this.
Just call Font fontnice = LoadBMFontEX("Yourfont.fnt");
rather than Font font= Loadont("Yourfont.fnt");
Feel free to use. You can use this at any purpose.
-- 2023. 11. 13.
- Modify font rect position
font.recs[i] = (Rectangle){ (float)charX, (float)charY + (float)imHeight * pageID, (float)charWidth, (float)charHeight };
Prior version uses constant 1024 rather than (float)imHeight
- Dynamic allocation of imPath variable
char** imPath;
imPath = malloc(sizeof(char) * 100); // imPath Initialization
-- 2023. 11. 2. Version 1.0. Created By Dongkun Lee