1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-04-11 12:40:04 +00:00
Files
bedrock-samples/metadata/json_schemas/clientbiome/v1.21.40/Ambient Sounds Client Biome Component v1.21.40.json
Mike Ammerlaan 8cb28e3b1e v1.21.70.3
2025-03-25 09:13:19 -07:00

21 lines
875 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "2544684648",
"title": "minecraft:ambient_sounds",
"description": "Set the ambient sounds for the biome. These sounds must be in the 'individual_named_sounds' in a 'sounds.json' file.",
"type": "object",
"properties": {
"addition": {
"description": "Named sound that occasionally plays at the listener position",
"type": "string"
},
"loop": {
"description": "Named sound that loops while the listener position is inside the biome",
"type": "string"
},
"mood": {
"description": "Named sound that rarely plays at a nearby air block position when the light level is low. Biomes without an ambient mood sound will use the 'ambient.cave' sound.",
"type": "string"
}
}
}