
You are viewing a potentially older version of this package. View Latest Version

BepInEx\config directory:
muteSoundNames.jsonreplaceSoundNames.jsonThe muteSoundNames.json file contains a list of sound names to be muted. Here's an example of how the file should look:
Player_SFX_Dash is dash
Player_SFX_ReflectMove is parry sound
use Toast Sound Name to get sound name
[
"Player_SFX_Dash",
"Player_SFX_ReflectMove"
]
The replaceSoundNames.json
{
"Player_SFX_Dash": "E:/Download/sound1.mp3",
"Player_SFX_ReflectMove": "E:/Download/sound2.mp3"
}
or you can put file in BepInEx\config
{
"Player_SFX_Dash": "sound1.mp3",
"Player_SFX_ReflectMove": "sound2.mp3"
}