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

22 lines
576 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.rail_movement",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Rail Movement",
2021-10-08 12:59:03 +02:00
"description": "Defines the entity's movement on the rails. An entity with this component is only allowed to move on the rail.",
"additionalProperties": false,
"required": [],
"properties": {
"max_speed": {
"type": "number",
"default": 0.4,
"description": "Maximum speed that this entity will move at when on the rail",
"title": "Maximum Speed"
}
2021-10-11 18:10:42 +02:00
},
"examples": [
{
"max_speed": 0.4
}
]
2021-10-08 12:59:03 +02:00
}