Hello,
Is there any way to get fonts look good in irrlicht .NET?
I have seen that there is the TrueType font "extension" but it isn't for .NET version.
Any help is appreciated....
.NET fonts
-
- Posts: 9
- Joined: Tue Jun 06, 2006 2:37 am
- Location: Germany
Hi,
"To make the font a little bit nicer, we load an external font and set it as new font in the skin. An at last, we create a nice Irrlicht Engine logo in the top left corner."
Take a look at Tutorial 5
"To make the font a little bit nicer, we load an external font and set it as new font in the skin. An at last, we create a nice Irrlicht Engine logo in the top left corner."
Code: Select all
IGUISkin skin = env.Skin;
IGUIFont font = env.GetFont(path + "fonthaettenschweiler.bmp");
if (font != null) {
skin.Font = font;
}
-
- Posts: 9
- Joined: Tue Jun 06, 2006 2:37 am
- Location: Germany
Here it is, maybe "crap" is wrong word for it but anyways...
http://img476.imageshack.us/my.php?image=font2de.jpg
http://img476.imageshack.us/my.php?image=font2de.jpg
-
- Posts: 9
- Joined: Tue Jun 06, 2006 2:37 am
- Location: Germany