Hacknet

Hacknet

View Stats:
is it possible to change the display fonts?
i would like to change the font to something else just for the vibe but can't seem to find any information on the topic, is it possible?
< >
Showing 1-3 of 3 comments
Spanospy Sep 16, 2024 @ 3:15pm 
Besides the text size, your only option is to replace the font XNA files located in the game's content directory. This would require knowledge of how XNA fonts work and how to manually compile them.
Spanospy Sep 16, 2024 @ 3:15pm 
Oh, and you would have to use something like ILSpy to confirm which font files are used for which. Or somehow decompile the font files and work based on their appearance.
Last edited by Spanospy; Sep 16, 2024 @ 3:16pm
oh well, even with no experience with decompiling and whatnot i managed to see the game files and find that for the biggest setting, which is the one i use, there's this

detailFont = content.Load<SpriteFont>(text + "Font7"),
smallFont = content.Load<SpriteFont>(text + "Font16"),
tinyFont = content.Load<SpriteFont>(text + "Font14"),
bigFont = content.Load<SpriteFont>(text + "Font23"),

i tried using some tools to convert some ttf fonts to xnb and replace the fonts in the content folder, same sizes and names and all, but the game doesn't start then, and gives a contentloadexception. i guess this is where manually compiling the fonts comes in
< >
Showing 1-3 of 3 comments
Per page: 1530 50