22 lines
526 B
JSON
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
|
|
}
|
|
]
|
|
}
|