Flattened particles
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"$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",
|
||||
"title": "Emitter Initialization Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"creation_expression": {
|
||||
"$ref": "../../../molang/string.json",
|
||||
"description": "This is run once at emitter startup.",
|
||||
"title": "Creation Expression"
|
||||
},
|
||||
"per_update_expression": {
|
||||
"$ref": "../../../molang/string.json",
|
||||
"description": "This is run once per emitter update.",
|
||||
"title": "Per Update Expression"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_lifetime_events",
|
||||
"type": "object",
|
||||
"title": "Emitter Lifetime Events Component For 1.10.0",
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"creation_event": {
|
||||
"title": "Creation Event",
|
||||
"description": "Fires when the emitter is created",
|
||||
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
|
||||
},
|
||||
"expiration_event": {
|
||||
"title": "Expiration Event",
|
||||
"description": "Fires when the emitter expires (does not wait for particles to expire too)",
|
||||
"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\\.]+$" },
|
||||
"additionalProperties": {
|
||||
"title": "Timeline Object",
|
||||
"description": "A single point in time that executes commands/molang/events",
|
||||
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
|
||||
}
|
||||
},
|
||||
"travel_distance_events": {
|
||||
"title": "Travel Distance Events",
|
||||
"description": "A series of distances, e.g. 0.0 or 1.0, that trigger the event these get fired when the emitter has moved by the specified input distance, e.g. one line might be: `0.4`: `event`",
|
||||
"propertyNames": { "pattern": "^[\\d\\.]+$" }
|
||||
},
|
||||
"looping_travel_distance_events": {
|
||||
"title": "Looping Travel Distance Events",
|
||||
"description": "A series of events that occur at set intervals these get fired every time the emitter has moved the specified input distance from the last time it was fired.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"title": "Distance Event",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"distance": { "title": "Distance", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "type": "number" },
|
||||
"effects": {
|
||||
"title": "Effects",
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_rate_manual",
|
||||
"type": "object",
|
||||
"title": "Emitter Rate Manual Component 1.10.0",
|
||||
"description": "UNDOCUMENTED: ",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"activation_expression": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "When the expression is non-zero, the emitter will emit particles. Evaluated every frame",
|
||||
"title": "Activation Expression"
|
||||
},
|
||||
"expiration_expression": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Emitter will expire if the expression is non-zero. Evaluated every frame",
|
||||
"title": "Expiration Expression"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_lifetime_looping",
|
||||
"type": "object",
|
||||
"title": "Emitter Lifetime Looping Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"active_time": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Emitter will emit particles for this time per loop evaluated once per particle emitter loop",
|
||||
"title": "Active Time"
|
||||
},
|
||||
"sleep_time": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Emitter will pause emitting particles for this time per loop evaluated once per particle emitter loop",
|
||||
"title": "Sleep Time"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_lifetime_once",
|
||||
"type": "object",
|
||||
"title": "Emitter Lifetime Once Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"active_time": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "How long the particles emit for evaluated once",
|
||||
"title": "Active Time"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_local_space",
|
||||
"type": "object",
|
||||
"title": "Emitter Local Space Component For 1.10.0",
|
||||
"description": "UNDOCUMENTED:",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"position": { "type": "boolean", "description": "UNDOCUMENTED: position", "title": "Position" },
|
||||
"rotation": { "type": "boolean", "description": "UNDOCUMENTED: rotation", "title": "Rotation" },
|
||||
"velocity": { "type": "boolean", "description": "UNDOCUMENTED: rotation", "title": "Rotation" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_rate_instant",
|
||||
"type": "object",
|
||||
"title": "Emitter Rate Instant Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"num_particles": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "This many particles are emitted at once evaluated once per particle emitter loop.",
|
||||
"title": "Num Particles",
|
||||
"default": 10
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_rate_manual",
|
||||
"type": "object",
|
||||
"title": "Emitter Rate Manual Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"max_particles": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Evaluated once per particle emitted",
|
||||
"title": "Maximum Particles"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_rate_steady",
|
||||
"type": "object",
|
||||
"title": "Emitter Rate Steady Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"max_particles": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Maximum number of particles that can be active at once for this emitter, evaluated once per particle emitter loop",
|
||||
"title": "Maximum Particles"
|
||||
},
|
||||
"spawn_rate": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "How often a particle is emitted, in particles/sec evaluated once per particle emitted",
|
||||
"title": "Spawn Rate"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_shape_box",
|
||||
"type": "object",
|
||||
"title": "Emitter Shape Box Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"direction": {
|
||||
"anyOf": [
|
||||
{ "type": "string", "enum": ["inwards", "outwards"] },
|
||||
{
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "title": "Z" }
|
||||
]
|
||||
}
|
||||
],
|
||||
"description": "UNDOCUMENTED: direction",
|
||||
"title": "Direction"
|
||||
},
|
||||
"radius": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: radius", "title": "Radius" },
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"title": "Offset"
|
||||
},
|
||||
"half_dimensions": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED: half dimensions",
|
||||
"title": "Half Dimensions"
|
||||
},
|
||||
"surface_only": { "type": "boolean", "description": "UNDOCUMENTED: surface only", "title": "Surface Only" }
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_shape_custom",
|
||||
"type": "object",
|
||||
"title": "Emitter Shape Custom Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"direction": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED: direction",
|
||||
"title": "Direction"
|
||||
},
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"title": "Offset"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_shape_disc",
|
||||
"type": "object",
|
||||
"title": "Emitter Shape Disc Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"direction": {
|
||||
"anyOf": [
|
||||
{ "type": "string", "enum": ["inwards", "outwards"] },
|
||||
{
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "title": "Z" }
|
||||
]
|
||||
}
|
||||
],
|
||||
"description": "UNDOCUMENTED: direction",
|
||||
"title": "Direction"
|
||||
},
|
||||
"radius": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: radius", "title": "Radius" },
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"title": "Offset",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
]
|
||||
},
|
||||
"plane_normal": {
|
||||
"title": "Plane Normal",
|
||||
"description": "Specifies the normal of the disc plane, the disc will be perpendicular to this direction",
|
||||
"default": [0, 1, 0],
|
||||
"oneOf": [
|
||||
{ "type": "string", "enum": ["x", "y", "z"] },
|
||||
{
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"surface_only": { "type": "boolean", "description": "UNDOCUMENTED: surface only", "title": "Surface Only" }
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_shape_entity_aabb",
|
||||
"type": "object",
|
||||
"title": "Emitter Shape Entity Aabb Component For 1.10.0",
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"direction": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED: direction",
|
||||
"title": "Direction"
|
||||
},
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"title": "Offset"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_shape_point",
|
||||
"type": "object",
|
||||
"title": "Emitter Shape Point Component For 1.10.0",
|
||||
"description": "UNDOCUMENTED: ",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"direction": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED: direction",
|
||||
"title": "Direction"
|
||||
},
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"title": "Offset"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.emitter_shape_sphere",
|
||||
"type": "object",
|
||||
"title": "Emitter Shape Sphere Component For 1.10.0",
|
||||
"description": "UNDOCUMENTED: ",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"direction": {
|
||||
"anyOf": [
|
||||
{ "type": "string", "enum": ["inwards", "outwards"] },
|
||||
{
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
]
|
||||
}
|
||||
],
|
||||
"description": "UNDOCUMENTED: direction",
|
||||
"title": "Direction"
|
||||
},
|
||||
"offset": {
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
],
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"title": "Offset"
|
||||
},
|
||||
"radius": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: radius", "title": "Radius" },
|
||||
"surface_only": { "type": "boolean", "description": "UNDOCUMENTED: surface only", "title": "Surface Only" }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_appearance_billboard",
|
||||
"type": "object",
|
||||
"title": "Particle Appearance Billboard Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"size": {
|
||||
"type": "array",
|
||||
"minItems": 2,
|
||||
"maxItems": 2,
|
||||
"items": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: size", "title": "Size" },
|
||||
"description": "UNDOCUMENTED: size",
|
||||
"title": "Size"
|
||||
},
|
||||
"facing_camera_mode": {
|
||||
"description": "Used to orient the billboard.",
|
||||
"type": "string",
|
||||
"enum": ["lookat_xyz", "lookat_y", "rotate_xyz", "rotate_y", "direction_x", "direction_y", "direction_z"],
|
||||
"title": "Facing Camera Mode"
|
||||
},
|
||||
"uv": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"texture_width": { "type": "integer", "description": "UNDOCUMENTED: texture width", "title": "Texture Width" },
|
||||
"texture_height": { "type": "integer", "description": "UNDOCUMENTED: texture height", "title": "Texture Height" },
|
||||
"flipbook": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"required": ["max_frame"],
|
||||
"properties": {
|
||||
"base_UV": {
|
||||
"type": "array",
|
||||
"minItems": 2,
|
||||
"maxItems": 2,
|
||||
"items": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: base UV", "title": "Base U V" },
|
||||
"description": "UNDOCUMENTED: base UV",
|
||||
"title": "Base U V"
|
||||
},
|
||||
"size_UV": {
|
||||
"type": "array",
|
||||
"minItems": 2,
|
||||
"maxItems": 2,
|
||||
"items": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: size UV", "title": "Size U V" },
|
||||
"description": "UNDOCUMENTED: size UV",
|
||||
"title": "Size U V"
|
||||
},
|
||||
"step_UV": {
|
||||
"type": "array",
|
||||
"minItems": 2,
|
||||
"maxItems": 2,
|
||||
"items": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: step UV", "title": "Step U V" },
|
||||
"description": "UNDOCUMENTED: step UV",
|
||||
"title": "Step U V"
|
||||
},
|
||||
"frames_per_second": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "UNDOCUMENTED: frames per second",
|
||||
"title": "Frames Per Second"
|
||||
},
|
||||
"max_frame": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: Maximum frame", "title": "Maximum Frame" },
|
||||
"stretch_to_lifetime": { "type": "boolean", "description": "UNDOCUMENTED: stretch to lifetime", "title": "Stretch To Lifetime" },
|
||||
"loop": { "type": "boolean", "description": "UNDOCUMENTED: loop", "title": "Loop" }
|
||||
},
|
||||
"description": "UNDOCUMENTED: flipbook",
|
||||
"title": "Flipbook"
|
||||
},
|
||||
"uv": {
|
||||
"type": "array",
|
||||
"minItems": 2,
|
||||
"maxItems": 2,
|
||||
"items": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: uv", "title": "Uv" },
|
||||
"description": "UNDOCUMENTED: uv",
|
||||
"title": "Uv"
|
||||
},
|
||||
"uv_size": {
|
||||
"type": "array",
|
||||
"minItems": 2,
|
||||
"maxItems": 2,
|
||||
"items": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: uv size", "title": "Uv Size" },
|
||||
"description": "UNDOCUMENTED: uv size",
|
||||
"title": "Uv Size"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: uv",
|
||||
"title": "Uv"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_appearance_lighting",
|
||||
"type": "object",
|
||||
"title": "Particle Appearance Lighting Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED"
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_appearance_tinting",
|
||||
"description": "Color fields are special, they can be either an RGB, or a `#RRGGBB` field (or RGBA or `AARRGGBB`). If RGB(A), the channels are from 0 to 1. If the string `#AARRGGBB`, then the values are hex from 00 to ff.",
|
||||
"type": "object",
|
||||
"title": "Particle Appearance Tinting Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"color": {
|
||||
"title": "Color",
|
||||
"anyOf": [
|
||||
{ "type": "array", "description": "Direct color field", "items": { "$ref": "../../../molang/number.json" } },
|
||||
{ "type": "string", "format": "color-hex", "description": "Direct color field" },
|
||||
{
|
||||
"description": "Interpolation based color",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"gradient": {
|
||||
"title": "Gradient",
|
||||
"oneOf": [
|
||||
{
|
||||
"description": "An array of colors",
|
||||
"type": "array",
|
||||
"items": { "type": "string", "description": "Color", "title": "Color", "format": "color-hex", "examples": ["#FFFFFF"] }
|
||||
},
|
||||
{
|
||||
"description": "An object of colors",
|
||||
"type": "object",
|
||||
"propertyNames": { "pattern": "(^[\\-0-9]+$|^[\\-0-9]+\\.[\\-0-9]+$)" },
|
||||
"additionalProperties": { "type": "string", "description": "Color", "format": "color-hex", "examples": ["#FFFFFF"] }
|
||||
},
|
||||
{
|
||||
"description": "An array of colors",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "array",
|
||||
"minItems": 3,
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{ "type": "number", "description": "Color", "title": "Color", "minimum": 0, "maximum": 1 },
|
||||
{ "type": "string", "title": "Molang" }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"interpolant": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: interpolant", "title": "Interpolant" }
|
||||
}
|
||||
}
|
||||
],
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_expire_if_not_in_blocks",
|
||||
"type": "array",
|
||||
"title": "Particle Expire If Not In Blocks Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"items": { "$ref": "../../../general/block/identifier.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Block" },
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED"
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_initial_speed",
|
||||
"title": "Particle Initial Speed Component For 1.10.0",
|
||||
"description": "UNDOCUMENTED",
|
||||
"$comment": "UNDOCUMENTED",
|
||||
"anyOf": [
|
||||
{ "$ref": "../../../molang/number.json" },
|
||||
{
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "X" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Y" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "Z" }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_initial_spin",
|
||||
"title": "Particle Initial Spin Component For 1.10.0",
|
||||
"description": "Starts the particle with a specified orientation and rotation rate.",
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"rotation": { "$ref": "../../../molang/number.json", "description": "Specifies the initial rotation in degrees", "title": "Rotation" },
|
||||
"rotation_rate": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Specifies the spin rate in degrees/second",
|
||||
"title": "Rotation Rate"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_initialization",
|
||||
"type": "object",
|
||||
"title": "Particle Initialization Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"per_update_expression": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "UNDOCUMENTED: per update expression",
|
||||
"title": "Per Update Expression"
|
||||
},
|
||||
"per_render_expression": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "UNDOCUMENTED: per render expression",
|
||||
"title": "Per Render Expression"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_kill_plane",
|
||||
"type": "array",
|
||||
"title": "Particle Kill Plane Component For 1.10.0",
|
||||
"description": "A*x + B*y + C*z + D = 0\nwith the parameters being [ A, B, C, D ]",
|
||||
"items": [
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "A" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "B" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "C" },
|
||||
{ "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED", "title": "D" }
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_lifetime_events",
|
||||
"type": "object",
|
||||
"title": "Particle Lifetime Events Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"creation_event": {
|
||||
"title": "Creation Event",
|
||||
"description": "Fires when the particle is created",
|
||||
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
|
||||
},
|
||||
"custom_events": { "title": "Custom Events", "description": "UNDOCUMENTED, unclear structure :(" },
|
||||
"expiration_event": {
|
||||
"title": "Expiration Event",
|
||||
"description": "Fires when the particle expires (does not wait for particles to expire too)",
|
||||
"oneOf": [{ "type": "array", "items": { "type": "string" } }, { "type": "string" }]
|
||||
},
|
||||
"timeline": { "propertyNames": { "pattern": "[0-9]*.[0-9]*" }, "description": "UNDOCUMENTED: timeline", "title": "Timeline" }
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_lifetime_expression",
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTED:",
|
||||
"title": "Particle Lifetime Expression Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"expiration_expression": {
|
||||
"title": "Expiration Expression",
|
||||
"description": "This expression makes the particle expire when true (non-zero), The float/expr is evaluated once per particle, evaluated every frame",
|
||||
"$ref": "../../../molang/number.json"
|
||||
},
|
||||
"max_lifetime": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Alternate way to express lifetime, particle will expire after this much time, evaluated once",
|
||||
"title": "Maximum Lifetime"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_motion_collision",
|
||||
"type": "object",
|
||||
"title": "Particle Motion Collision Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"collision_drag": { "type": "number", "description": "UNDOCUMENTED: collision drag", "title": "Collision Drag" },
|
||||
"coefficient_of_restitution": {
|
||||
"type": "number",
|
||||
"description": "UNDOCUMENTED: coefficient of restitution",
|
||||
"title": "Coefficient Of Restitution"
|
||||
},
|
||||
"collision_radius": { "type": "number", "description": "UNDOCUMENTED: collision radius", "title": "Collision Radius" },
|
||||
"enabled": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: enabled", "title": "Enabled" },
|
||||
"expire_on_contact": { "type": "boolean", "description": "UNDOCUMENTED: expire on contact", "title": "Expire On Contact" },
|
||||
"events": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"properties": {
|
||||
"additionalProperties": false,
|
||||
"event": { "type": "string", "description": "UNDOCUMENTED: event", "title": "Event" },
|
||||
"min_speed": { "type": "number", "description": "UNDOCUMENTED: Minimum speed", "title": "Minimum Speed" }
|
||||
},
|
||||
"description": "UNDOCUMENTED: events",
|
||||
"title": "Events"
|
||||
},
|
||||
"description": "UNDOCUMENTED: events",
|
||||
"title": "Events"
|
||||
}
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_motion_dynamic",
|
||||
"description": "This component specifies the dynamic properties of the particle, from a simulation standpoint what forces act upon the particle? These dynamics alter the velocity of the particle, which is a combination of the direction of the particle and the speed. Particle direction will always be in the direction of the velocity of the particle.",
|
||||
"type": "object",
|
||||
"title": "Particle Motion Dynamic Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"linear_acceleration": {
|
||||
"type": "array",
|
||||
"default": [0, 0, 0],
|
||||
"minItems": 3,
|
||||
"maxItems": 3,
|
||||
"items": { "$ref": "../../../molang/number.json" },
|
||||
"description": "The linear acceleration applied to the particle. Units are blocks/sec/sec",
|
||||
"title": "Linear Acceleration"
|
||||
},
|
||||
"linear_drag_coefficient": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Using the equation: `acceleration = -linear_drag_coefficient*velocity` where velocity is the current direction times speed. Think of this as air-drag. The higher the value, the more drag evaluated every frame",
|
||||
"default": 0,
|
||||
"title": "Linear Drag Coefficient"
|
||||
},
|
||||
"rotation_acceleration": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Acceleration applies to the rotation speed of the particle",
|
||||
"title": "Rotation Acceleration",
|
||||
"default": 0
|
||||
},
|
||||
"rotation_drag_coefficient": {
|
||||
"$ref": "../../../molang/number.json",
|
||||
"description": "Drag applied to rotation",
|
||||
"title": "Rotation Drag Coefficient",
|
||||
"default": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"$id": "blockception.minecraft.resource.particle.1.10.0.particle_motion_parametric",
|
||||
"type": "object",
|
||||
"title": "Particle Motion Parametric Component For 1.10.0",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"relative_position": {
|
||||
"type": "array",
|
||||
"minItems": 3,
|
||||
"maxItems": 3,
|
||||
"items": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: relative position", "title": "Relative Position" },
|
||||
"description": "UNDOCUMENTED: relative position",
|
||||
"title": "Relative Position"
|
||||
},
|
||||
"rotation": { "$ref": "../../../molang/number.json", "description": "UNDOCUMENTED: rotation", "title": "Rotation" }
|
||||
},
|
||||
"description": "UNDOCUMENTED: "
|
||||
}
|
||||
Reference in New Issue
Block a user