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

17 lines
530 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.friction_modifier",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Friction Modifier",
2021-10-08 12:59:03 +02:00
"additionalProperties": false,
"description": "Defines how much does friction affect this entity.",
"required": [],
"properties": {
"value": {
"type": "number",
"default": 1.0,
"description": "The higher the number, the more the friction affects this entity. A value of 1.0 means regular friction, while 2.0 means twice as much",
"title": "Value"
}
}
}