Files
minecraft-bedrock-json-schemas/source/behavior/entities/format/components/follow_range.json
Xterionix 798221290d Misc entity fixes (#248)
* - Misc entity fixes

* - Update entity sensor

* Update source/behavior/entities/format/behaviors/dig.json

Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>

* - Change entity sensor range property

* - Fix

---------

Co-authored-by: Daan Verstraten <daanverstraten@hotmail.com>
2024-03-23 07:20:51 +01:00

27 lines
668 B
JSON

{
"$id": "blockception.minecraft.behavior.entities.minecraft.follow_range",
"type": "object",
"title": "Follow Range",
"description": "Defines the range of blocks that a mob will pursue a target.",
"additionalProperties": false,
"required": [],
"properties": {
"value": {
"type": "integer",
"description": "The distance this entity can be from the target when following it",
"title": "Value"
},
"max": {
"type": "integer",
"description": "Maximum distance this entity can be from the target when following it",
"title": "Max"
}
},
"examples": [
{
"value": 16,
"max": 48
}
]
}