Files
minecraft-bedrock-json-schemas/source/behaviour/entities/1.8.0/components/minecraft.target_nearby_sensor.json
2021-03-21 15:18:38 +01:00

40 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.entities.1.8.0.minecraft.target_nearby_sensor",
"description": "Defines the entity's range within which it can see or sense other entities to target them.",
"type": "object",
"title": "Target Nearby Sensor 1.8.0",
"additionalProperties": false,
"required": [],
"properties": {
"must_see": { "type": "boolean", "default": false, "description": "Whether the other entity needs to be visible to trigger 'inside' events", "title": "TODO Title" },
"inside_range": {
"type": "number",
"default": 1,
"description": "Maximum distance in blocks that another entity will be considered in the 'inside' range",
"title": "TODO Title"
},
"on_inside_range": {
"$ref": "../types/event.json",
"description": "Event to call when an entity gets in the inside range. Can specify 'event' for the name of the event and 'target' for the target of the event",
"title": "On Inside Range"
},
"on_outside_range": {
"$ref": "../types/event.json",
"description": "Event to call when an entity gets in the outside range. Can specify 'event' for the name of the event and 'target' for the target of the event",
"title": "On Outside Range"
},
"on_vision_lost_inside_range": {
"$ref": "../types/event.json",
"description": "Event to call when an entity exits visual range. Can specify 'event' for the name of the event and 'target' for the target of the event",
"title": "On Vision Lost Inside Range"
},
"outside_range": {
"type": "number",
"default": 5,
"description": "Maximum distance in blocks that another entity will be considered in the 'outside' range",
"title": "Outside Range"
}
}
}