Refactor
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema",
|
||||
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.entity_sensor",
|
||||
"type": "object",
|
||||
"title": "Entity Sensor 1.8.0",
|
||||
"description": "A component that fires an event when a set of conditions are met by other entities within the defined range.",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"maximum_count": {
|
||||
"type": "integer",
|
||||
"default": -1,
|
||||
"description": "The maximum number of entities that must pass the filter conditions for the event to send.",
|
||||
"title": "Maximum Count"
|
||||
},
|
||||
"minimum_count": {
|
||||
"type": "integer",
|
||||
"default": 1,
|
||||
"description": "The minimum number of entities that must pass the filter conditions for the event to send.",
|
||||
"title": "Minimum Count"
|
||||
},
|
||||
"relative_range": { "type": "boolean", "default": true, "description": "If true the sensor range is additive on top of the entity's size.", "title": "Relative Range" },
|
||||
"require_all": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "If true requires all nearby entities to pass the filter conditions for the event to send.",
|
||||
"title": "Require All"
|
||||
},
|
||||
"sensor_range": {
|
||||
"type": "number",
|
||||
"default": 10,
|
||||
"description": "The maximum distance another entity can be from this and have the filters checked against it.",
|
||||
"title": "Sensor Range"
|
||||
},
|
||||
"event_filters": { "$ref": "../filters.json" },
|
||||
"event": { "title": "Event", "description": "event", "type": "string" }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user