Files
minecraft-bedrock-json-schemas/source/behavior/features/features/minecraft.partially_exposed_blob_feature.json
Xterionix c9449c75d6 Updated for 1.21.70 along with other improvements (#337)
* Update vscode-settings.json

* - Updated map color

* - Added replaceable block component

* - Effect durations can be set to infinite now

* - Added support for entity sound variants

* - Fix description for renders_when_invisible entity component

* - Added is_collidable component

* - Updated entity_sensor

* - Added body_rotation_axis_aligned

* - Updated projectile > on_hit

* - Set min and max for collision_box

* - Added locator field to sounds in animation controllers and animations

* - Added new event response

* - Removed peak_factor from mountain_parameters component

* - Added isotropic field to material_instances

* - Added tint field to material_instances

* - Added input_air_controlled entity component

* - Added use_beta_features property to entity.json

* - Added missing match_tool property

* - Added use_home_position_restriction to float_wander goal

* - Added deferred client biome components

* - Added dry_foliage_color client biome component

* - Added destruction_particles

* - Marked biome tinting as experimental

* - Fix property_inheritance under breedable

* - Fix inconsistency with scatter feature

* - Update rideable description

* - Allowed event.add/remove to be strings

* - Added missing property in move_around_target behavior

* - Made features accept block references

* - Allowed repairable to use item descriptors

* - Fix typo
2025-03-03 08:44:05 +01:00

46 lines
1.6 KiB
JSON

{
"type": "object",
"title": "Partially Exposed Blob Feature",
"description": "'minecraft:partially_exposed_blob_feature' generates a blob of the specified block with the specified dimensions For the most part the blob is embedded in the specified surface, however a single side is allowed to be exposed.",
"additionalProperties": false,
"required": ["places_block", "description", "placement_radius_around_floor", "placement_probability_per_valid_position"],
"properties": {
"description": {
"$ref": "../types/description.json"
},
"places_block": {
"title": "Places Block",
"description": "Reference to the block to be placed.",
"$ref": "../../../general/block/reference.json"
},
"placement_radius_around_floor": {
"title": "Placement Radius Around Floor",
"description": "Defines the cubic radius of the blob.",
"type": "number",
"minimum": 1,
"maximum": 8
},
"placement_probability_per_valid_position": {
"title": "Placement Probability Per Valid Position",
"description": "The probability of trying to place a block at each position within the placement bounds.",
"type": "number",
"minimum": 0,
"maximum": 1
},
"exposed_face": {
"title": "Exposed Face",
"description": "Defines a block face that is allowed to be exposed to air and/or water. Other faces need to be embedded for blocks to be placed by this feature. Defaults to upwards face",
"default": "up",
"enum": [
"up",
"down",
"side",
"north",
"east",
"west",
"south"
]
}
}
}