1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-07-16 07:45:37 +00:00
Files
bedrock-samples/metadata/json_schemas/client/1.21.0/Particle Visual Effect Event.json
Mike Ammerlaan d2c831e602 v1.21.90.3
2025-06-18 05:19:56 -07:00

70 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "2245986520",
"x-format-version": "1.21.0",
"x-minecraft-version": "1.21.90-beta.3",
"definitions": {
"2715320761": {
"title": "hashed_string",
"type": "string"
},
"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": "particle_visual_effect_event",
"type": "object",
"properties": {
"effect": {
"$ref": "#/definitions/2715320761"
},
"pre_effect_expression": {
"$ref": "#/definitions/3178719147"
},
"type": {
"title": "particle_visual_effect_event effect_type",
"type": "string",
"enum": [
"particle",
"particle_with_velocity",
"emitter",
"emitter_bound"
]
}
},
"required": [
"effect",
"type"
]
}