Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/water_movement.json
2021-10-11 18:10:42 +02:00

22 lines
526 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.water_movement",
"description": "Defines the speed with which an entity can move through water.",
"type": "object",
"title": "Water Movement",
"additionalProperties": false,
"required": [],
"properties": {
"drag_factor": {
"type": "number",
"default": 0.8,
"description": "Drag factor to determine movement speed when in water.",
"title": "Drag Factor"
}
},
"examples": [
{
"drag_factor": 0.8
}
]
}