
BGM Player
This mod completely redesigns the game's background music system, offering enhanced customization options for audio accompaniment.
Key Features
- Continuous Playback: Music continues playing without interruptions when loading saves, opening pause menus, and in other situations
- MP3 Format Support: In addition to standard formats, you can now use popular MP3 files
- Built-in Music Player: Access to track selection directly from the game through mod menu or sound settings
Configuration Settings
All parameters are updated when reloading game resources. Note that during this process, all music files and icons are loaded into memory, which may cause temporary delays.
Main Settings
The configuration file is automatically created at .minecraft/config/bgm-player/config.json
after the first game launch.
{
//Allowed values: playlist, single_looping, random
"mode": "random",
//Playback order in the music list. Tracks not specified here are added to the end
"playlist": [
//Specify names of music configuration JSON files without extension
//The game automatically starts with the first track, which can be defined here
]
}
Music Track Settings
All music configurations are stored in the .minecraft/config/bgm-player/music/
folder.
{
"name": "Name displayed in the music list",
//Relative path from .minecraft/config/bgm-player/resource/
"path": "Path to the music file. Supports wav, ogg and mp3",
"author": "(Optional) Track author",
"album": "(Optional) Album",
//Relative path from .minecraft/config/bgm-player/resource/
"icon": "(Optional) Path to the icon. Supports png, jpg and webp"
}