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

18 lines
508 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.water_movement",
2021-10-08 12:59:03 +02:00
"description": "Defines the speed with which an entity can move through water.",
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Water Movement",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"required": [],
"properties": {
"drag_factor": {
"type": "number",
"default": 0.8,
"description": "Drag factor to determine movement speed when in water.",
"title": "Drag Factor"
}
2021-10-11 18:10:42 +02:00
},
2021-10-11 19:10:26 +02:00
"examples": [{ "drag_factor": 0.8 }]
2021-10-08 12:59:03 +02:00
}