Files
minecraft-bedrock-json-schemas/source/behavior/items/format/components/should_despawn.json
2024-05-11 11:24:22 +02:00

26 lines
689 B
JSON

{
"$id": "blockception.minecraft.behavior.items.minecraft:should_despawn",
"title": "Should Despawn",
"description": "Should despawn component determines if the item should eventually despawn while floating in the world",
"default": true,
"examples": [false, { "value": false }],
"oneOf": [
{
"type": "boolean"
},
{
"type": "object",
"additionalProperties": false,
"required": ["value"],
"properties": {
"value": {
"title": "Value",
"description": "Whether the item should eventually despawn while floating in the world",
"type": "boolean",
"default": true
}
}
}
]
}