[PC] Nights of Azure - Modifing Font
Posted: Fri Apr 10, 2020 2:40 am
I'm trying modify the font of the Nights of Azure, I take a look in the russian translation and I found a thing,
the glyph coordinates are in the game exe, I tried discovery by myself about the font table structure, and I know this:
It's probabbly 99% of sure that all unk values are padding, but I don't understand how padding works very well... is there any tool, or someone can see what is those unks to help me Write something?
the glyph coordinates are in the game exe, I tried discovery by myself about the font table structure, and I know this:
Code: Select all
//CNN: 0x9F9BF0 = Font Table
struct Glyph {
public uint UTF8;//Reversed
public ushort X;
public ushort Y;
public ushort Width;
public ushort Height;
public uint Unk2;//1?
public uint Unk3;//2?
public uint Unk4;//Padding? Width+1
public uint Unk5;//0
}