1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-10-07 04:09:53 +00:00
Files
bedrock-samples/metadata/json_schemas/server/entity/1.21.100/TickWorldDefinition.json
2025-09-09 10:02:11 -07:00

25 lines
968 B
JSON

{
"$id": "1057040869",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Defines if the entity ticks the world and the radius around it to tick.",
"properties": {
"distance_to_players": {
"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. Default value: 128.",
"minimum": 128,
"type": "number"
},
"never_despawn": {
"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. Default value: true.",
"type": "boolean"
},
"radius": {
"description": "The area around the entity to tick. Allowed range: 2-6. Default value: 2.",
"maximum": 6,
"minimum": 2,
"type": "integer"
}
},
"title": "minecraft:tick_world",
"type": "object",
"x-format-version": "1.21.100"
}