1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-08-09 07:51:51 +00:00
Files
bedrock-samples/metadata/json_schemas/client/1.21.0/Emitter Shape Box.json
Mike Ammerlaan c32ab2ac8e v1.21.100.6
2025-08-05 10:30:44 -07:00

92 lines
2.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "2315991144",
"x-format-version": "1.21.0",
"x-minecraft-version": "1.21.100-beta.6",
"definitions": {
"1399264962": {
"title": "particle_emitter_direction",
"oneOf": [
{
"title": "direction_type",
"type": "string",
"enum": [
"inwards",
"outwards"
]
},
{
"type": "array",
"items": {
"$ref": "#/definitions/3178719147"
},
"minItems": 3,
"maxItems": 3
}
]
},
"3178719147": {
"title": "Molang expression",
"oneOf": [
{
"$ref": "#/definitions/2267778531"
},
{
"type": "number"
}
]
},
"2267778531": {
"title": "Molang string",
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"expression": {
"type": "string"
},
"version": {
"type": "integer"
}
},
"required": [
"expression",
"version"
]
}
]
}
},
"title": "emitter_shape_box",
"type": "object",
"properties": {
"direction": {
"$ref": "#/definitions/1399264962"
},
"half_dimensions": {
"type": "array",
"items": {
"$ref": "#/definitions/3178719147"
},
"minItems": 3,
"maxItems": 3
},
"offset": {
"type": "array",
"items": {
"$ref": "#/definitions/3178719147"
},
"minItems": 3,
"maxItems": 3
},
"surface_only": {
"type": "boolean"
}
},
"required": [
"half_dimensions"
]
}