mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2025-10-15 22:55:45 +00:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"$id": "1042742755",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Noise parameters used to drive terrain height in the Overworld.",
|
|
"properties": {
|
|
"noise_params": {
|
|
"description": "First value is depth - more negative means deeper underwater, while more positive means higher. Second value is scale, which affects how much noise changes as it moves from the surface.",
|
|
"items": {
|
|
"type": "number"
|
|
},
|
|
"maxItems": 2,
|
|
"minItems": 2,
|
|
"type": "array"
|
|
},
|
|
"noise_type": {
|
|
"description": "Specifies a preset based on a built-in setting rather than manually using noise_params",
|
|
"enum": [
|
|
"default",
|
|
"default_mutated",
|
|
"river",
|
|
"ocean",
|
|
"deep_ocean",
|
|
"lowlands",
|
|
"taiga",
|
|
"mountains",
|
|
"highlands",
|
|
"extreme",
|
|
"less_extreme",
|
|
"beach",
|
|
"stone_beach",
|
|
"mushroom",
|
|
"swamp"
|
|
],
|
|
"title": "Noise Type",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"title": "minecraft:overworld_height",
|
|
"type": "object",
|
|
"x-format-version": "1.20.60"
|
|
} |