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

20 lines
749 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_initialization",
"description": "This component allows the emitter to run some Molang at creation, primarily to populate any MoLang variables that get used later.",
"type": "object",
2021-03-21 15:18:38 +01:00
"title": "Emitter Initialization Component For 1.10.0",
2020-11-01 17:22:42 +01:00
"additionalProperties": false,
"properties": {
2021-05-18 23:32:44 +02:00
"creation_expression": {
"$ref": "../../../../molang/1.8.0/string.json",
"description": "This is run once at emitter startup.",
"title": "Creation Expression"
},
"per_update_expression": {
"$ref": "../../../../molang/1.8.0/string.json",
"description": "This is run once per emitter update.",
"title": "Per Update Expression"
}
2020-11-01 17:22:42 +01:00
}
}