Files
minecraft-bedrock-json-schemas/source/resource/particles/1.10.0/components/minecraft.particle_lifetime_events.json

23 lines
1019 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_lifetime_events",
"type": "object",
2021-03-21 15:18:38 +01:00
"title": "Particle Lifetime Events Component For 1.10.0",
2020-11-01 17:22:42 +01:00
"additionalProperties": false,
"properties": {
"creation_event": {
2021-03-21 15:18:38 +01:00
"title": "Creation Event",
2020-11-01 17:22:42 +01:00
"description": "Fires when the particle is created",
2021-03-21 15:18:38 +01:00
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
2020-11-01 17:22:42 +01:00
},
2021-03-21 15:18:38 +01:00
"custom_events": { "title": "Custom Events", "description": "TODO, unclear structure :(" },
2020-11-01 17:22:42 +01:00
"expiration_event": {
2021-03-21 15:18:38 +01:00
"title": "Expiration Event",
2020-11-01 17:22:42 +01:00
"description": "Fires when the particle expires (does not wait for particles to expire too)",
2021-03-21 15:18:38 +01:00
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
2020-11-01 17:22:42 +01:00
},
2021-03-21 15:18:38 +01:00
"timeline": { "propertyNames": { "pattern": "[0-9]*.[0-9]*" }, "description": "TODO description: timeline", "title": "Timeline" }
2020-11-01 17:22:42 +01:00
},
"description": "TODO description: "
}