Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/underwater_movement.json
DW623 8a7533a941 Updating Undocumented (#180)
* Updating UnDocumented
Updating Undocumented and Fix Component errors
* Update source/behavior/entities/format/components/is_stackable.json
* Update source/behavior/entities/format/components/is_stackable.json

---------

Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
2023-08-14 08:21:03 +02:00

21 lines
484 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.underwater_movement",
"description": "Defines the speed with which an entity can move through water.",
"type": "object",
"title": "Underwater Movement",
"additionalProperties": false,
"required": [],
"properties": {
"value": {
"type": "number",
"title": "Value",
"description": "Movement speed of the entity under water."
}
},
"examples": [
{
"value": 0.15
}
]
}