2021-01-23 15:21:46 +00:00
|
|
|
|
|
|
|
#Configs related to how ding works
|
|
|
|
[ding]
|
2021-01-28 20:57:27 +00:00
|
|
|
#Pitch of the sound (when resources complete reloading)
|
|
|
|
#Range: 0.0 ~ 10.0
|
|
|
|
pitchResourcesReload = 1.0
|
|
|
|
#Play sound when resources complete reloading. Requires game to be restarted.
|
|
|
|
playOnResourcesReload = true
|
|
|
|
#If Ding can't find the third party sound you added with other mods (EG: Additional Resources), try turning this on to skip that check.
|
|
|
|
skipSoundEventCheck = false
|
2021-01-23 15:21:46 +00:00
|
|
|
#Resource Location based name of the sound file to play when Minecraft finishes loading.
|
|
|
|
#EG: "ui.button.click" or "entity.experience_orb.pickup"
|
|
|
|
#
|
|
|
|
#This can also be a mod sound if the mod is installed.
|
|
|
|
#EG: "modname:modsound.boing"
|
|
|
|
#
|
|
|
|
#If you want to use external sounds, consider looking into the mod Additional Resources
|
|
|
|
name = "entity.experience_orb.pickup"
|
|
|
|
#Pitch of the sound (when the world loads after connecting to a server)
|
|
|
|
#Range: 0.0 ~ 10.0
|
|
|
|
pitchWorld = 1.0
|
|
|
|
#Resource Location based name of the sound file to play when resources complete reloading.
|
|
|
|
#
|
|
|
|
#Look at the "name" config for more details.
|
|
|
|
nameResourcesReload = "entity.experience_orb.pickup"
|
2021-01-28 20:57:27 +00:00
|
|
|
#Play sound when the world loads after connecting to a server.
|
|
|
|
playOnWorld = true
|
|
|
|
#Pitch of the sound (when Minecraft loads)
|
2021-01-23 15:21:46 +00:00
|
|
|
#Range: 0.0 ~ 10.0
|
2021-01-28 20:57:27 +00:00
|
|
|
pitch = 1.0
|
2021-01-23 15:21:46 +00:00
|
|
|
#Play sound when the game loads.
|
|
|
|
playOnLoad = true
|
2021-01-28 20:57:27 +00:00
|
|
|
#Resource Location based name of the sound file to play when the world finishes loading (after connecting to a server).
|
|
|
|
#
|
|
|
|
#Look at the "name" config for more details.
|
|
|
|
nameWorld = "entity.experience_orb.pickup"
|
2021-01-23 15:21:46 +00:00
|
|
|
|