Files
minecraft-bedrock-json-schemas/behaviour/entities/1.8.0/components/minecraft.tick_world.json
2020-11-01 17:22:42 +01:00

33 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.tick_world",
"description": "Defines if the entity ticks the world and the radius around it to tick.",
"type": "object",
"title": "Tick world 1.8.0",
"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,
"title": "TODO title"
},
"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.",
"title": "TODO title"
},
"radius": {
"type": "integer",
"default": 2,
"description": "The area around the entity to tick. Default: 2. Allowed range: 2-6.",
"minimum": 2,
"maximum": 6,
"title": "TODO title"
}
}
}