A Hollow Knight mod that allows players to use their custom title.
- Go to the mod's data folder of this mod. (Located in
<Hollow Knight Path>/Hollow Knight_Data/Managed/Mods/CustomTitle/data) - Drop your image in there. A high-resolution and transparent background is recommended.
- Open
data.jsonin that folder and write your image file name to the menu style you want to replace. You should understand how it works from the examples I wrote for the DLC menu styles
{
"Classic_Style": "",
"HD_Style": "dream.png",
"Grimm_Style": "grimm.png",
"Modern_Style": "lifeblood.png",
"Radiant_Style": "",
"GG_Style": "god.png",
"Shade_Style": "",
"Infected_Style": "",
"Steel_Style": "",
"Brilliant_Style": "",
"VHeart_menu_Style": "void.png"
}
Please take note that this method might not work on some mods.
Let's take an example that you want to add a custom title for the menu style of Pale Court mod. Assuming the custom title image file you want to replace is named mycooltitle.png
- Install
Unity Explorerfrom Lumafly/Scarab - Open the game, switch to the Pale Court menu style. Then press F7 to activate
Unity Explorer. In the Object Explorer window, find and selectMenu_Styles-> select the highlighted one in the dropdown and copy its name from the Inspector window
- Drop your
mycooltitle.pngto the data folder. Then opendata.jsonand add a new entry, left one is the name of the menu style and right one is the image filename. Example:
...
"VHeart_menu_Style": "void.png",
"Pale_Court_Style_1(Clone)": "mycooltitle.png"
}
- That's it! Enjoy
Yep I know some of the default menu titles are kinda low-quality :)



