Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/underwater_movement.json

21 lines
484 B
JSON
Raw Normal View History

2021-10-08 12:59:03 +02:00
{
2021-10-08 13:04:13 +02:00
"$id": "blockception.minecraft.behavior.entities.minecraft.underwater_movement",
"description": "Defines the speed with which an entity can move through water.",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Underwater Movement",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"required": [],
"properties": {
2021-10-11 18:10:42 +02:00
"value": {
"type": "number",
"title": "Value",
"description": "Movement speed of the entity under water."
2021-10-11 18:10:42 +02:00
}
},
"examples": [
{
"value": 0.15
2021-10-11 18:10:42 +02:00
}
]
2021-10-08 12:59:03 +02:00
}