Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/water_movement.json
DaanV2 87a9df91ee Added
2021-10-11 19:10:26 +02:00

18 lines
508 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 }]
}