Files
minecraft-bedrock-json-schemas/source/behavior/entities/1.8.0/components/minecraft.tick_world.json

32 lines
1.1 KiB
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
2021-04-04 13:52:35 +02:00
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.tick_world",
2020-11-01 17:22:42 +01:00
"description": "Defines if the entity ticks the world and the radius around it to tick.",
"type": "object",
2021-03-21 15:18:38 +01:00
"title": "Tick World 1.8.0",
2020-11-01 17:22:42 +01:00
"additionalProperties": false,
"required": [],
"properties": {
"distance_to_players": {
"type": "number",
"default": 128,
"description": "The distance at which the closest player has to be before this entity despawns. This option will be ignored if never_despawn is true. Min: 128 blocks.",
"minimum": 128,
2021-03-21 15:18:38 +01:00
"title": "TODO Title"
2020-11-01 17:22:42 +01:00
},
"never_despawn": {
"type": "boolean",
"default": true,
"description": "If true, this entity will not despawn even if players are far away. If false, distance_to_players will be used to determine when to despawn.",
2021-03-21 15:18:38 +01:00
"title": "TODO Title"
2020-11-01 17:22:42 +01:00
},
"radius": {
"type": "integer",
"default": 2,
"description": "The area around the entity to tick. Default: 2. Allowed range: 2-6.",
"minimum": 2,
"maximum": 6,
2021-03-21 15:18:38 +01:00
"title": "TODO Title"
2020-11-01 17:22:42 +01:00
}
}
}