alemart / opensurge

A retro game engine with a fun platformer for making your dreams come true!
http://opensurge2d.org
GNU General Public License v3.0
385 stars 33 forks source link

Font size too big to print nomally for korean #15

Closed dart-bird closed 4 years ago

dart-bird commented 4 years ago

I think opensurge should divide the font cases and not make them recognized by the program at once.

screenshot, 2019-12-20 17-36-14

fonts/dialogbox.fnt should be changed with two cases about for Ubuntu ttf file and Gothic ttf file.
From what I've tested, 10 font size for Gothic would be the best.

As far as I'm concerned ...

font "dialogbox"
{
    truetype
    {
        source_file             "fonts/Ubuntu-M.ttf"
        size                    14
        shadow
        antialias
    }
}

to

font "dialogbox"
{
    truetype
    {
        source_file             "fonts/Ubuntu-M.ttf"
        size                    14
        shadow
        antialias
    }
}
font "dialogbox_ko"
{
    truetype
    {
        source_file             "fonts/GothicA1.ttf"
        size                    10
        shadow
        antialias
    }
}
alemart commented 4 years ago

I understand. Dividing the font cases is indeed the best approach. I have submitted a change in line with your request. Let me know if you can translate it now.

alemart commented 4 years ago

Translation accepted and issue fixed.