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

21 lines
565 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.instant_despawn",
2021-10-08 12:59:03 +02:00
"type": "object",
2021-10-08 13:04:13 +02:00
"title": "Instant Despawn",
2021-10-08 12:59:03 +02:00
"description": "Despawns the Actor immediately.",
"additionalProperties": false,
"properties": {
"remove_child_entities": {
"type": "boolean",
"default": false,
"description": "If true, all entities linked to this entity in a child relationship (eg. leashed) will also be despawned.",
"title": "Remove Child Entities"
}
2021-10-11 18:10:42 +02:00
},
"examples": [
{
"remove_child_entities": false
}
]
2021-10-08 12:59:03 +02:00
}