This commit is contained in:
DaanV2
2021-04-04 14:17:52 +02:00
parent af351b8316
commit f3b32d60cb
3 changed files with 34 additions and 10 deletions

View File

@@ -17,6 +17,7 @@
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
},
"timeline": {
"title": "Timeline",
"type": "object",
"description": "A series of times, e.g. 0.0 or 1.0, that trigger the event, these get fired on every loop the emitter goes through, \"time\" is the time, e.g. one line might be: \"0.4\": \"event\"",
"propertyNames": { "pattern": "^[\\d\\.]+$" },
@@ -24,8 +25,7 @@
"title": "Timeline Object",
"description": "A single point in time that executes commands/molang/events",
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
},
"title": "TODO Title"
}
},
"travel_distance_events": {
"title": "Travel Distance Events",
@@ -42,7 +42,11 @@
"additionalProperties": false,
"properties": {
"distance": { "title": "Distance", "description": "TODO", "type": "number" },
"effects": { "title": "Effects", "description": "TODO", "oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }] }
"effects": {
"title": "Effects",
"description": "TODO",
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
}
}
}
}

View File

@@ -2,7 +2,8 @@
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_rate_manual",
"type": "object",
"title": "Emitter Rate Manual Component For 1.10.0",
"title": "Emitter Rate Manual Component 1.10.0",
"description": "TODO description: ",
"additionalProperties": false,
"properties": {
"activation_expression": {
@@ -15,6 +16,5 @@
"description": "Emitter will expire if the expression is non-zero. Evaluated every frame",
"title": "Expiration Expression"
}
},
"description": "TODO description: "
}
}