1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-08-12 09:12:55 +00:00
Files
bedrock-samples/metadata/json_schemas/client/1.21.10/Particle Effect Description.json
Mike Ammerlaan c32ab2ac8e v1.21.100.6
2025-08-05 10:30:44 -07:00

49 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "3226186110",
"x-format-version": "1.21.10",
"x-minecraft-version": "1.21.100-beta.6",
"definitions": {
"801168425": {
"title": "particle_effect basic_render_parameters",
"description": "The parameters MUST contain a material and texture.",
"type": "object",
"properties": {
"material": {
"$ref": "#/definitions/2715320761"
},
"texture": {
"$ref": "#/definitions/1102433254"
}
},
"required": [
"material",
"texture"
]
},
"2715320761": {
"title": "hashed_string",
"type": "string"
},
"1102433254": {
"title": "File Reference",
"type": "string"
}
},
"title": "particle_effect description",
"description": "The description MUST contain an identifier and basic_render_parameters.",
"type": "object",
"properties": {
"basic_render_parameters": {
"description": "The parameters MUST contain a material and texture.",
"$ref": "#/definitions/801168425"
},
"identifier": {
"type": "string"
}
},
"required": [
"basic_render_parameters",
"identifier"
]
}