1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-07-25 03:34:45 +00:00
Files
bedrock-samples/metadata/json_schemas/client/1.21.10/Particle Effect Description.json
Mike Ammerlaan d2c831e602 v1.21.90.3
2025-06-18 05:19:56 -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.90-beta.3",
"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/1969805686"
}
},
"required": [
"material",
"texture"
]
},
"2715320761": {
"title": "hashed_string",
"type": "string"
},
"1969805686": {
"title": "struct SharedTypes::FileReference<7>",
"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"
]
}