1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-09-22 06:11:19 +00:00
bedrock-samples/documentation/Particles.html
Mike Ammerlaan 1440438305 v1.21.30.3
2024-09-17 09:13:33 -07:00

1643 lines
72 KiB
HTML

<h1>PARTICLES DOCUMENTATION </br>Version: 1.21.30.3</h1>
<h2><p id="Index">Index</p></h2>
<table border="1">
<tr> <th><a href="#Basic Structure Overview">Basic Structure Overview</a></th> </tr>
<tr> <th><a href="#Component Concept">Component Concept</a></th> </tr>
<tr> <th><a href="#Current Component List">Current Component List</a></th> </tr>
<tr> <td> <a href="#"> </a> </tr> </td>
<tr> <td> <a href="#Emitter Components"> Emitter Components</a> </tr> </td>
<tr> <td> <a href="#Particle Components"> Particle Components</a> </tr> </td>
<tr> <th><a href="#Curves">Curves</a></th> </tr>
<tr> <th><a href="#Events">Events</a></th> </tr>
<tr> <th><a href="#Examples">Examples</a></th> </tr>
<tr> <td> <a href="#Bouncing Bubbles"> Bouncing Bubbles</a> </tr> </td>
<tr> <td> <a href="#Flame particle"> Flame particle</a> </tr> </td>
<tr> <td> <a href="#Mob Flame effect"> Mob Flame effect</a> </tr> </td>
<tr> <td> <a href="#Smoke particle"> Smoke particle</a> </tr> </td>
<tr> <th><a href="#Materials">Materials</a></th> </tr>
<tr> <td> <a href="#"> </a> </tr> </td>
<tr> <th><a href="#Molang integration">Molang integration</a></th> </tr>
<tr> <td> <a href="#"> </a> </tr> </td>
<tr> <th><a href="#Namespacing">Namespacing</a></th> </tr>
<tr> <th><a href="#Particles Entity Integration">Particles Entity Integration</a></th> </tr>
<tr> <td> <a href="#Animation Controller effects"> Animation Controller effects</a> </tr> </td>
<tr> <td> <a href="#Animation Controller effects (continued)"> Animation Controller effects (continued)</a> </tr> </td>
<tr> <td> <a href="#Animation Timeline effects"> Animation Timeline effects</a> </tr> </td>
<tr> <td> <a href="#Animation Timeline effects (continued)"> Animation Timeline effects (continued)</a> </tr> </td>
<tr> <td> <a href="#Effect Event"> Effect Event</a> </tr> </td>
<tr> <td> <a href="#Effect List"> Effect List</a> </tr> </td>
<tr> <td> <a href="#Effect List (continued)"> Effect List (continued)</a> </tr> </td>
<tr> <th><a href="#Particles Examples Pack">Particles Examples Pack</a></th> </tr>
<tr> <td> <a href="#"> </a> </tr> </td>
<tr> <th><a href="#Structure In Detail">Structure In Detail</a></th> </tr>
</table>
<a href="#Index">Back to top</a>
<h1><p id="Basic Structure Overview">Basic Structure Overview</p></h1>
Particle effects consist of basic render parameters, and a set of components. Components can be placed in any order.</br><h2></h2>
Outline:<br / ><textarea readonly="true" cols="119" rows="32">
{
"format_version": "1.10.0",
"particle_effect": {
"description": {
"identifier": <string>, // e.g. "minecraft:test_effect", this is the name the particle emitter is referred to as
"basic_render_parameters": {
"material": <string> // Minecraft material to use for emitter
"texture": <string> // Minecraft texture to use for emitter
}
},
"curves": {
// curve details
},
"events": {
// events details
},
"components":
// emission rate components
// emission lifetime components
// emission shape components, or the shape of the effect as defined
// by particle emission position and directions
// emitter local space components
// components that control initial state of particles
// components that control/direct motion of particles
// components that affect how the particle is drawn
// components that affect particle lifetime
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Component Concept">Component Concept</p></h1>
The particle system is component based. What this means is that particle effects are composed via a set of components. In order for an effect to do something, you add a component that handles that aspect of the effect. For example, an emitter usually needs to have rules for its lifetime, thus the effect should have one or more lifetime components that handle lifetime duties for the emitter and emitted particles.</br></br>The idea is that new components can be added later, and one can combine components (where it makes sense) to get different behaviors. A particle might have a Dynamic component for moving around, and a Collision component for handling interaction with the terrain, for example.</br></br>Think of components as telling the particle system what you want the emitter or particle to do, rather than exposing a list of particle parameters and having to wrangle those parameters to get the desired behavior.</br><a href="#Index">Back to top</a><br><br>
<h1><p id="Current Component List">Current Component List</p></h1>
<h2></h2>
For fields in these components, the following shorthand is used:<br / ><textarea readonly="true" cols="107" rows="7">
<float> - field takes a floating point input
<float/molang> - field takes a floating point input, or a Molang expression
<default:val> - specifies the default value used if field isn't specified
<bool> - "true" or "false"
<string> - a string ("this is a string"
<default> - not a part of the particular line, this just says what this field defaults to if not specified
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Emitter Components">Emitter Components</p></h1>
<h2></h2>
<h2><p id="Emitter Lifetime Components">Emitter Lifetime Components</p></h2>
<h3></h3>
<h3><p id="Emitter Lifetime Events component">Emitter Lifetime Events component</p></h3>
Allows for lifetime events on the emitter to trigger certain events.</br><h4></h4>
<br / ><textarea readonly="true" cols="121" rows="32">
"minecraft:emitter_lifetime_events": {
// all events use the event names in the event section
// all events can be an array or a string
"creation_event": [ <string>, ...] // fires when the emitter is created
"creation_event": <string>
"expiration_event": [ <string>, ...] // fires when the emitter expires (does not wait for particles to expire too)
"expiration_event": <string>
// event timeline
"timeline: {
// 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"
"time": [ <string>, ... ]
"time": <string>
}
}
// travel_distance_events
"travel_distance_events: {
// 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"
"distance": [ <string>, ... ]
"distance": <string>
}
// looping_travel_distance_events
"looping_travel_distance_events: [
// 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.
// An example for how to format these events would be:
// {
// "distance": 1.0,
// "effects": [ "effect_one" ]
// },
// {
// "distance": 2.0,
// "effects": [ "effect_two" ]
// }
//
// Note that "effect_one" and "effect_two" must be defined events within the particle_effect
]
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Lifetime Expression component">Emitter Lifetime Expression component</p></h3>
Emitter will turn 'on' when the activation expression is non-zero, and will turn 'off' when it's zero. This is useful for situations like driving an entity-attached emitter from an entity variable.</br><h4></h4>
<br / ><textarea readonly="true" cols="73" rows="10">
"minecraft:emitter_lifetime_expression": {
// When the expression is non-zero, the emitter will emit particles.
// Evaluated every frame
"activation_expression": <float/molang> <default:1>
// Emitter will expire if the expression is non-zero.
// Evaluated every frame
"expiration_expression": <float/molang> <default:0>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Lifetime Looping component">Emitter Lifetime Looping component</p></h3>
Emitter will loop until it is removed.</br><h4></h4>
<br / ><textarea readonly="true" cols="68" rows="11">
"minecraft:emitter_lifetime_looping": {
// emitter will emit particles for this time per loop
// evaluated once per particle emitter loop
"active_time": <float/molang> <default:10>
// emitter will pause emitting particles for this time per loop
// evaluated once per particle emitter loop
"sleep_time": <float/molang> <default:0>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Lifetime Once component">Emitter Lifetime Once component</p></h3>
Emitter will execute once, and once the lifetime ends or the number of particles allowed to emit have emitted, the emitter expires.</br><h4></h4>
<br / ><textarea readonly="true" cols="47" rows="6">
"minecraft:emitter_lifetime_once": {
// how long the particles emit for
// evaluated once
"active_time": <float/molang> <default:10>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h2><p id="Emitter Rate Components">Emitter Rate Components</p></h2>
<h3></h3>
<h3><p id="Emitter Rate Instant component">Emitter Rate Instant component</p></h3>
All particles come out at once, then no more unless the emitter loops.</br><h4></h4>
<br / ><textarea readonly="true" cols="49" rows="6">
"minecraft:emitter_rate_instant": {
// this many particles are emitted at once
// evaluated once per particle emitter loop
"num_particles": <float/molang> <default:10>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Rate Manual component">Emitter Rate Manual component</p></h3>
Particle emission will occur only when the emitter is told to emit via the game itself. This is mostly used by legacy particle effects.</br><h4></h4>
<br / ><textarea readonly="true" cols="49" rows="5">
"minecraft:emitter_rate_manual": {
// evaluated once per particle emitted
"max_particles": <float/molang> <default:50>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Rate Steady component">Emitter Rate Steady component</p></h3>
Particles come out at a steady or Molang rate over time.</br><h4></h4>
<br / ><textarea readonly="true" cols="79" rows="10">
"minecraft:emitter_rate_steady": {
// how often a particle is emitted, in particles/sec
// evaluated once per particle emitted
"spawn_rate": <float/molang> <default:1>
// maximum number of particles that can be active at once for this emitter
// evaluated once per particle emitter loop
"max_particles": <float/molang> <default:50>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h2><p id="Emitter Shape Components">Emitter Shape Components</p></h2>
Shape controls both where the particles are emitted from and the initial direction of the particles.</br><h3></h3>
<h3><p id="Emitter Disc component">Emitter Disc component</p></h3>
This component spawns particles using a disc shape, particles can be spawned inside the shape or on its outer perimeter.</br><h4></h4>
<br / ><textarea readonly="true" cols="107" rows="26">
"minecraft:emitter_shape_disc": {
// specifies the normal of the disc plane, the disc will be perpendicular to this direction
// defaults to [ 0, 1, 0 ]
"plane_normal": "x", // this variant has the normal in the x axis
"plane_normal": "y", // this variant has the normal in the y axis
"plane_normal": "z", // this variant has the normal in the z axis
"plane_normal": [ <float/molang>, <float/molang>, <float/molang> ], // custom direction for the normal
// specifies the offset from the emitter to emit the particles
// evaluated once per particle emitted
"offset": [<float/molang>, <float/molang>, <float/molang>] <default:[0, 0, 0]>
// disc radius
// evaluated once per particle emitted
"radius": <float/molang> <default:1>
// emit only from the edge of the disc
"surface_only": <bool> <default:false>
// specifies the direction of particles. Defaults to "outwards"
"direction": "inwards" // particle direction towards center of disc
"direction": "outwards" // particle direction away from center of disc
// evaluated once per particle emitted
"direction": [<float/molang>, <float/molang>, <float/molang>]
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Shape Box component">Emitter Shape Box component</p></h3>
All particles come out of a box of the specified size from the emitter.</br><h4></h4>
<br / ><textarea readonly="true" cols="83" rows="22">
"minecraft:emitter_shape_box": {
// specifies the offset from the emitter to emit the particles
// evaluated once per particle emitted
"offset": [<float/molang>, <float/molang>, <float/molang>] <default:[0, 0, 0]>
// box dimensions
// these are the half dimensions, the box is formed centered on the emitter
// with the box extending in the 3 principal x/y/z axes by these values
"half_dimensions": [ <float/molang>, <float/molang> <float/molang ],
// emit only from the surface of the sphere
"surface_only": <bool> <default:false>
// specifies the direction of particles. Defaults to "outwards"
// evaluated once per particle emitted
"direction": "inwards" // particle direction towards center of sphere
"direction": "outwards" // particle direction away from center of sphere
"direction": [<float/molang>, <float/molang>, <float/molang>]
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Shape Custom component">Emitter Shape Custom component</p></h3>
All particles are emitted based on a specified set of Molang expressions.</br><h4></h4>
<br / ><textarea readonly="true" cols="89" rows="10">
"minecraft:emitter_shape_custom": {
// specifies the offset from the emitter to emit the particles
// evaluated once per particle emitted
"offset": [<float/molang>, <float/molang>, <float/molang>] <default:[0, 0, 0]>
// specifies the direciton for the particle
// evaluated once per particle emitted
"direction": [<float/molang>, <float/molang>, <float/molang>] <default:[0, 0, 0]
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Shape Entity-AABB component">Emitter Shape Entity-AABB component</p></h3>
All particles come out of the axis-aligned bounding box (AABB) for the entity the emitter is attached to, or the emitter point if no entity.</br><h4></h4>
<br / ><textarea readonly="true" cols="89" rows="13">
"minecraft:emitter_shape_entity_aabb": {
// emit only from the surface of the sphere
"surface_only": <bool> <default:false>
// evaluated once per particle emitted
// defaults to outwards
"direction": "inwards" // particle direction towards center of sphere
"direction": "outwards" // particle direction away from center of sphere
"direction": [<float/molang>, <float/molang>, <float/molang>] <default:[0, 0, 0]
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Shape Point component">Emitter Shape Point component</p></h3>
All particles come out of a point offset from the emitter.</br><h4></h4>
<br / ><textarea readonly="true" cols="83" rows="10">
"minecraft:emitter_shape_point": {
// specifies the offset from the emitter to emit the particles
// evaluated once per particle emitted
"offset": [<float/molang>, <float/molang>, <float/molang>] <default:[0, 0, 0]>
// specifies the direciton of particles.
// evaluated once per particle emitted
"direction": [<float/molang>, <float/molang>, <float/molang>]
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Shape Sphere component">Emitter Shape Sphere component</p></h3>
All particles come out of a sphere offset from the emitter.</br><h4></h4>
<br / ><textarea readonly="true" cols="83" rows="19">
"minecraft:emitter_shape_sphere": {
// specifies the offset from the emitter to emit the particles
// evaluated once per particle emitted
"offset": [<float/molang>, <float/molang>, <float/molang>] <default:[0, 0, 0]>
// sphere radius
// evaluated once per particle emitted
"radius": <float/molang> <default:1>
// emit only from the surface of the sphere
"surface_only": <bool> <default:false>
// specifies the direction of particles. Defaults to "outwards"
"direction": "inwards" // particle direction towards center of sphere
"direction": "outwards" // particle direction away from center of sphere
// evaluated once per particle emitted
"direction": [<float/molang>, <float/molang>, <float/molang>]
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h2><p id="Initial State Components">Initial State Components</p></h2>
<h3></h3>
<h3><p id="Emitter Initialization component">Emitter Initialization component</p></h3>
This component allows the emitter to run some Molang at creation, primarily to populate any Molang variables that get used later.</br><h4></h4>
<br / ><textarea readonly="true" cols="75" rows="7">
"minecraft:emitter_initialization": {
"creation_expression": <molang>, // this is run once at emitter startup
"per_update_expression": <molang> // this is run once per emitter update
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Emitter Local Space component">Emitter Local Space component</p></h3>
This component specifies the frame of reference of the emitter. Applies only when the emitter is attached to an entity. When 'position' is true, the particles will simulate in entity space, otherwise they will simulate in world space. Rotation works the same way for rotation. Default is false for both, which makes the particles emit relative to the emitter, then simulate independently from the emitter. Note that rotation = true and position = false is an invalid option. Velocity will add the emitter's velocity to the initial particle velocity.</br><h4></h4>
<br / ><textarea readonly="true" cols="35" rows="6">
"minecraft:emitter_local_space": {
"position": <bool>
"rotation": <bool>
"velocity": <bool>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<br><br>
<h1><p id="Particle Components">Particle Components</p></h1>
<h2></h2>
<h2><p id="Particle Appearance Components">Particle Appearance Components</p></h2>
<h3></h3>
<h3><p id="Particle Appearance Billboard component">Particle Appearance Billboard component</p></h3>
This component tells the particle system to render the particle as a billboard, a rectangle in the world facing a particluar direction.</br><h4></h4>
<br / ><textarea readonly="true" cols="178" rows="32">
"minecraft:particle_appearance_billboard": {
// specifies the x/y size of the billboard
// evaluated every frame
"size": [<float/molang>, <float/molang>],
// used to orient the billboard. Options are:
// "rotate_xyz" - aligned to the camera, perpendicular to the view axis
// "rotate_y" - aligned to camera, but rotating around world y axis
// "lookat_xyz" - aimed at the camera, biased towards world y up
// "lookat_y" - aimed at the camera, but rotating around world y axis
// "direction_x" - unrotated particle x axis is along the direction vector, unrotated y axis attempts to aim upwards
// "direction_y" - unrotated particle y axis is along the direction vector, unrotated x axis attempts to aim upwards
// "direction_z" - billboard face is along the direction vector, unrotated y axis attempts to aim upwards
// emitter_transform_xy, // orient the particles to match the emitter's transform (the billboard plane will match the transform's xy plane).
// emitter_transform_xz, // orient the particles to match the emitter's transform (the billboard plane will match the transform's xz plane).
// emitter_transform_yz, // orient the particles to match the emitter's transform (the billboard plane will match the transform's yz plane).
//"face_camera_mode": <string>
// Specifies how to calculate the direction of a particle, this will be used by facing modes that require a direction as input (for instance: lookat_direction and direction)
// Options are:
// "derive_from_velocity" - The direction matches the direction of the velocity.
// "custom_direction" - The direction is specified in the json definition using a vector of floats or molang expressions.
// If the direction subsection is not defined, the default will be "derive_from_velocity" mode with a "min_speed_threshold" of 0.01.
"direction": {
"mode": "derive_from_velocity" or "custom_direction",
"min_speed_threshold": <float> // only used in "derive_from_velocity" mode. The direction is set if the speed of the particle is above the threshold. The default is 0.01
"custom_direction": [ <float/molang>, <float/molang>, <float/molang> ], // only used in "custom_direction" mode. Specifies the direction vector
}
// specifies the UVs for the particle.
"uv": {
// specifies the assumed texture width/height
// defaults to 1
// when set to 1, UV's work just like normalized UV's
// when set to the texture width/height, this works like texels
"texturewidth": <int>,
"textureheight": <int>,
// Assuming the specified texture width and height, use these
// uv coordinates.
// evaluated every frame
"uv": [<float/molang>, <float/molang>],
"uv_size": [<float/molang>, <float/molang>],
// alternate way via specifying a flipbook animation
// a flipbook animation uses pieces of the texture to animate, by stepping over time from one
// "frame" to another
"flipbook": {
"base_UV": [ <float/molang>, <float/molang> ], // upper-left corner of starting UV patch
"size_UV": [ <float>, <float> ], // size of UV patch
"step_UV": [ <float>, <float> ], // how far to move the UV patch each frame
"frames_per_second": <float>, // default frames per second
"max_frame": <float/molang>, // maximum frame number, with first frame being frame 1
"stretch_to_lifetime": <bool>, // optional, adjust fps to match lifetime of particle. default=false
"loop": <bool> // optional, makes the animation loop when it reaches the end? default=false
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Appearance Lighting">Particle Appearance Lighting</p></h3>
When this component exists, particle will be tinted by local lighting conditions in-game.</br><h4></h4>
<br / ><textarea readonly="true" cols="45" rows="2">
"minecraft:particle_appearance_lighting": {}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Appearance Tinting component">Particle Appearance Tinting component</p></h3>
Color tinting of the particle is controlled by this component:</br><h4></h4>
<br / ><textarea readonly="true" cols="75" rows="32">
// 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.
//
// this pseudo-type will be denoted by <color>
"minecraft:particle_appearance_tinting": {
// interpolation based color
"color": {
// an array of colors
// there are two ways to specify the array of colors
// the first method is to just have an array of colors
// these will be interpreted to be equally spaced, with the entire
// range going from 0 to 1
//
// the second option is to specify a value/color pair list
// this will cause the colors to appear when their specified value
// occurs in the interpolant, and interpolated in between. Note
// that this will be sorted
"gradient": [ <color>, <color>, ...],
"gradient": {
<float>: <color>,
<float>: <color>,
...
}
"interpolant": <float/molang> // hint: use a curve here!
}
// directly set the color
"color": <color>
// examples of direct color field:
"color": "#ff0000"
"color": [1, 0, 0]
},
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h2><p id="Particle Initial State Components">Particle Initial State Components</p></h2>
<h3></h3>
<h3><p id="Particle Initial Speed component">Particle Initial Speed component</p></h3>
Starts the particle with a specified speed, using the direction specified by the emitter shape.</br><h4></h4>
<br / ><textarea readonly="true" cols="85" rows="7">
// evaluated once
"minecraft:particle_initial_speed": <float/molang> <default:0>
"minecraft:particle_initial_speed" [<float/molang>, <float/molang>, <float/molang>],
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Initial State component">Particle Initial State component</p></h3>
Starts the particle with a specified orientation and rotation rate.</br><h4></h4>
<br / ><textarea readonly="true" cols="49" rows="10">
"minecraft:particle_initial_spin": {
// specifies the initial rotation in degrees
// evaluated once
"rotation": <float/molang> <default:0>
// specifies the spin rate in degrees/second
// evaluated once
"rotation_rate": <float/molang> <default:0>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h2><p id="Particle Lifetime Components">Particle Lifetime Components</p></h2>
<h3></h3>
<h3><p id="Particle Expire If In Blocks component">Particle Expire If In Blocks component</p></h3>
Particles expire when in a block of the type in the list. Note: this component can exist alongside particle_lifetime_expression.</br><h4></h4>
<br / ><textarea readonly="true" cols="70" rows="9">
"minecraft:particle_expire_if_in_blocks" [
// minecraft block names, e.g. 'minecraft:water', 'minecraft:air'
// these are typically the same name as in the /setblock command
// except for the minecraft: prefix
"blockname1",
"blockname2",
...
],
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Expire If Not In Blocks component">Particle Expire If Not In Blocks component</p></h3>
Particles expire when in a block of the type not in the list. Note: this component can exist alongside particle_lifetime_expression.</br><h4></h4>
<br / ><textarea readonly="true" cols="70" rows="9">
"minecraft:particle_expire_if_not_in_blocks" [
// minecraft block names, e.g. 'minecraft:water', 'minecraft:air'
// these are typically the same name as in the /setblock command
// except for the minecraft: prefix
"blockname1",
"blockname2",
...
],
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Lifetime Events component">Particle Lifetime Events component</p></h3>
This component allows for triggering events based on various lifetime events.</br><h4></h4>
<br / ><textarea readonly="true" cols="121" rows="18">
"minecraft:particle_lifetime_events": {
// all events use the event names in the event section
// all events can be either an array or a string
"creation_event": [<string>, ...] // fires when the particle is created
"creation_event": <string>
"expiration_event": [<string>, ...] // fires when the particle expires (does not wait for particles to expire too)
"expiration_event": <string>,
// event timeline
"timeline": {
// a series of times, e.g. 0.0 or 1.0, that trigger the event
// "time" is the time, e.g. one line might be:
// "0.4": "event"
"time": [<string>", ...]
"time": <string>
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Lifetime Expression component">Particle Lifetime Expression component</p></h3>
Standard lifetime component. These expressions control the lifetime of the particle.</br><h4></h4>
<br / ><textarea readonly="true" cols="70" rows="12">
"minecraft:particle_lifetime_expression": {
// this expression makes the particle expire when true (non-zero)
// The float/expr is evaluated once per particle
// evaluated every frame
"expiration_expression": <float/molang> <default:0>
// alternate way to express lifetime
// particle will expire after this much time
// evaluated once
"max_lifetime": <float/molang>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Lifetime Kill-Plane component">Particle Lifetime Kill-Plane component</p></h3>
Particles that cross this plane expire. The plane is relative to the emitter, but oriented in world space. The four parameters are the usual 4 elements of a plane equation.</br><h4></h4>
<br / ><textarea readonly="true" cols="72" rows="5">
// A*x + B*y + C*z + D = 0
// with the parameters being [ A, B, C, D ]
"minecraft:particle_kill_plane": [ <float>, <float>, <float>, <float> ]
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h2><p id="Particle Motion Components">Particle Motion Components</p></h2>
<h3></h3>
<h3><p id="Particle Motion Collision component">Particle Motion Collision component</p></h3>
This component enables collisions between the terrain and the particle. Collision detection in Minecraft consists of detecting an intersection, moving to a nearby non-intersecting point for the particle (if possible), and setting its direction to not be aimed towards the collision (usually perpendicular to the collision surface). Note that if this component doesn't exist, there will be no collision.</br><h4></h4>
<br / ><textarea readonly="true" cols="95" rows="32">
"minecraft:particle_motion_collision": {
// enables collision when true/non-zero.
// evaluated every frame
"enabled": <bool/molang> <default:true>
// alters the speed of the particle when it has collided
// useful for emulating friction/drag when colliding, e.g a particle
// that hits the ground would slow to a stop.
// This drag slows down the particle by this amount in blocks/sec
// when in contact
"collision_drag": <float>
// used for bouncing/not-bouncing
// Set to 0.0 to not bounce, 1.0 to bounce back up to original hight
// and in-between to lose speed after bouncing. Set to >1.0 to gain energy on each bounce
"coefficient_of_restitution": <float>
// used to minimize interpenetration of particles with the environment
// note that this must be less than or equal to 1/2 block
"collision_radius": <float>
// triggers expiration on contact if true
"expire_on_contact": <bool>
// triggers an event
// array of individual events
"events": [
{
// triggers the specified event if the conditions are met
"event": <string>
// optional minimum speed for event triggering
"min_speed": <float> // default/minimum is 2 blocks/sec
},
],
"events": { // can be an individual event as well
// triggers the specified event if the conditions are met
"event": <string>
// optional minimum speed for event triggering
"min_speed": <float> // default/minimum is 2 blocks/sec
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Motion Dynamic component">Particle Motion Dynamic component</p></h3>
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.</br><h4></h4>
<br / ><textarea readonly="true" cols="85" rows="32">
"minecraft:particle_motion_dynamic": {
// the linear acceleration applied to the particle, defaults to [0, 0, 0].
// Units are blocks/sec/sec
// An example would be gravity which is [0, -9.8, 0]
// evaluated every frame
"linear_acceleration": [<float/molang>, <float/molang>, <float/molang>],
// 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
"linear_drag_coefficient": <float/molang> <default:0>
// acceleration applies to the rotation speed of the particle
// think of a disc spinning up or a smoke puff that starts rotating
// but slows down over time
// evaluated every frame
// acceleration is in degrees/sec/sec
"rotation_acceleration" <float/molang> <default:0>
// drag applied to retard rotation
// equation is rotation_acceleration += -rotation_rate*rotation_drag_coefficient
// useful to slow a rotation, or to limit the rotation acceleration
// Think of a disc that speeds up (acceleration)
// but reaches a terminal speed (drag)
// Another use is if you have a particle growing in size, having
// the rotation slow down due to drag can add "weight" to the particle's
// motion
"rotation_drag_coefficient" <float/molang> <default:0>
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h3><p id="Particle Motion Parametric component">Particle Motion Parametric component</p></h3>
This component directly controls the particle. Note that this component won't work for either manually-emitted particles, or entity-based particle emitters that aren't in local space.</br><h4></h4>
<br / ><textarea readonly="true" cols="72" rows="19">
"minecraft:particle_motion_parametric": {
// directly set the position relative to the emitter.
// E.g. a spiral might be:
// "relative_position": ["Math.cos(Params.LifeTime)", 1.0,
// "Math.sin(Params.Lifetime)"]
// defaults to [0, 0, 0]
// evaluated every frame
"relative_position": [<float/molang> <float/molang> <float/molang>]
// directly set the 3d direction of the particle
// doesn't affect direction if not specified
// evaluated every frame
"direction": [<float/molang> <float/molang> <float/molang]
// directly set the rotation of the particle
// evaluated every frame
"rotation": <float/molang> <default:0>
}}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<br><br>
<br><br>
<h1><p id="Curves">Curves</p></h1>
Curves are interpolation values, with inputs from 0 to 1, and outputs based on the curve. The result of the curve is a Molang variable of the same name that can be referenced in Molang in components. For each rendering frame for each particle, the curves are evaluated and the result is placed in a Molang variable of the name of the curve.</br><h2></h2>
<br / ><textarea readonly="true" cols="120" rows="32">
"curves": {
// "molangvar" is the Molang variable to be used later in Molang expressions
// for example "variable.mycurve" here would make the result of the curve
// available in Molang as "variable.mycurve". Note that all variables must begin with "variable."
"molangvar": {
// type can be "linear", "bezier", "bezier_chain", or "catmull_rom"
// "linear" is a series of nodes, equally spaced between 0 and 1 (after applying input/horizontal_range)
// "bezier" is a 4-node bezier spline, with the first and last point being the values at 0 and 1
// and the middle two points forming the slope lines at 0.33 for the first point and 0.66 for the second
// "catmull_rom" is a series of curves which pass through all but the last/first node. The first/last nodes
// are used to form the slope of the second/second-last points respectively. All points are evenly spaced.
// "bezier_chain" is a chain of bezier splines. See below for the node configuration. A series of points are
// specified, along with their corresponding slopes, and each segment will use it's pair of points and
// slopes to form a bezier spline. Each point other than first/last is shared between it's pair of
// spline segments.
"type": type,
// control nodes for curve. These are assumed to be equally
// spaced, e.g. first node is at input value 0, second at 0.25, etc
// this notation works only for linear, bezier, and catmull_rom
"nodes": [<float/molang>, <float/molang>, <float/molang>, <float/molang>],
// control nodes for bezier_chain
// the nodes will be sorted prior to parsing, so if you declare nodes 0.3, 0.6, 0.5, they will be
// re-ordered to 0.3, 0.5, 0.6
"nodes": {
// the key values map to the "input" field
"0.3": {
"value": "5", // the output of the curve
"left_value": "2", // when curve comes from the left of the node, what point does it use?
"right_value": "3", // when curve comes from the right side of the node, what point does it use?
"slope": "3", // the slope of the node, both sides
"left_slope: "0.4", // the left slope of the node
"right_slope": "2", // the right slope of the node
},
... // more nodes
},
// what is the input value to use
// for example, "variable.particle_age/variable.particle_lifetime would result in an input from 0 to 1 over
// the lifetime of the particle, while variable.particle_age would have input of how old the particle is in seconds
"input": <float/molang>,
// what is the range the input is mapped onto
// between 0 and this value
// note: this field is deprecated and optional (default: 1.0)
// note: this field is ignored for bezier_chain
"horizontal_range": <float/molang>
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Events">Events</p></h1>
Events can be triggered elsewhere in the .json and fire off new particle and sound effects.</br></br>Particle effects have different types. If the type is "emitter", this will create an emitter of "effect" type at the event's world position, in a fire-and-forget way. "emitter_bound" works similarly, except if the spawning emitter is bound to an actor/locator, the new emitter will be bound to the same actor/locator. If the type is "particle", then the event will manually emit a particle on an emitter of "effect" type at the event location, creating the emitter if it doesn't already exist (be sure to use "minecraft:emitter_rate_manual" for the spawned emitter effect). "particle_with_velocity" will do the same as "particle" except the new particle will inherit the spawning particle's velocity.</br></br>Sound effects specify the specific "level sound event" to be played when the event fires.</br></br>The events themselves consist of an optional node tree and/or an actual event. When "sequence" is specified, that array will execute in order, with every element executing when that event fires. When using "random", one element will be picked from the array based on the weight.</br><h2></h2>
<br / ><textarea readonly="true" cols="117" rows="32">
// events block:
"events": {
"event_name1",
"event_name2",
...
}
// structure of an event, note that nesting can be any combination of "sequence", or "randomize"
"event_name": {
"sequence": [
{ /*this node executes first*/ },
{ /*this node executes second*/ },
{ /* etc */},
{
"sequence": [
{
// nested nodes
},
...
]
},
{
"randomize": [
{
"weight": <float>
/* data for this option, including other sequences/randoms */
},
...
]
}
]
},
// Fields for a particlar event. Note that any of the above nodes can have events inserted into their blocks.
"event_subpart": {
"particle_effect": {
// identifier of the effect
"effect": <string>,
// "emitter", "emitter_bound", "particle" or "particle_with_velocity"
"type": <string>,
// this Molang is run on the emitter for this event once this
// event fires
// NOTE: this will not have access to the event
// triggering emitter's Molang data
"pre_effect_expression": <string>,
},
"sound_effect": {
// name of the level sound event
"event_name": <string>
},
// Runs this Molang expression on the event-firing emitter
"expression": <string>,
// for debugging, this will log a message, along with the firing effect's name and event position
// the log message will show up in the content logger
"log": <string>
}
// simple example:
"events": {
"event_name1": {
"particle_effect": {
"effect": "a_particle_effect",
"type": "emitter"
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Examples">Examples</p></h1>
<h1><p id="Bouncing Bubbles">Bouncing Bubbles</p></h1>
This particle effect generates a bunch of bubbles that bounce around.</br><h2></h2>
<br / ><textarea readonly="true" cols="100" rows="32">
{
"format_version": "1.10.0",
"particle_effect": {
"description": {
"identifier": "minecraft:test_bounce",
"basic_render_parameters": {
"material": "particles_alpha",
"texture": "textures/particle/particles"
}
},
"components": {
"minecraft:emitter_rate_instant": {
"num_particles": 100
},
"minecraft:emitter_lifetime_once": {
"active_time": 2
},
"minecraft:emitter_shape_sphere": {
"offset": [ "Math.random(-0.5, 0.5)", "Math.random(-0.5, 0.5)", "Math.random(-0.5, 0.5)" ],
"direction": "outwards",
"radius": 1
},
"minecraft:particle_initial_speed": 5.0,
"minecraft:particle_initial_spin": {
"rotation": "Math.random(0, 360)",
"rotation_rate": 0
},
"minecraft:particle_lifetime_expression": {
"max_lifetime": "5"
},
"minecraft:particle_motion_dynamic": {
"linear_acceleration": [ 0, -9.8, 0 ]
},
"minecraft:particle_motion_collision": {
"coefficient_of_restitution": 0.5,
"collision_drag": 4,
"collision_radius": 0.1
},
"minecraft:particle_appearance_billboard": {
"size": [ "0.1", "0.1" ],
"facing_camera_mode": "lookat_xyz",
"uv": {
"texture_width": 128,
"texture_height": 128,
"uv": [ 0, 16 ],
"uv_size": [ 8, 8 ]
}
},
"minecraft:particle_appearance_lighting": {}
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Flame particle">Flame particle</p></h1>
This particle is the little flame that appears on torches and furnaces to indicate fire. It is a simple particle, consisting of a non-moving flame, with some variations. Note the use of Molang to create variations in the particle behavior.</br></br>In addition, the use of texturewidth/height in the UV section of the billboard component allows referencing of UVs via texels:</br><h2></h2>
<br / ><textarea readonly="true" cols="81" rows="32">
{
"format_version": "1.10.0",
"particle_effect": {
"description": {
"identifier": "minecraft:basic_flame_particle",
"basic_render_parameters": {
"material": "particles_alpha",
"texture": "textures/particle/particles"
}
},
"components": {
"minecraft:emitter_rate_instant": {
"num_particles": 1
},
"minecraft:emitter_lifetime_expression": {
"activation_expression": 1,
"expiration_expression": 0
},
"minecraft:emitter_shape_sphere": {
"radius": 0.025,
"direction": [ 0, 0, 0 ]
},
"minecraft:particle_lifetime_expression": {
"max_lifetime": "Math.random(0.6, 2.0)"
},
"minecraft:particle_appearance_billboard": {
"size": [
"(0.1 + variable.ParticleRandom1*0.1) - (0.1 * variable.ParticleAge)",
"(0.1 + variable.ParticleRandom1*0.1) - (0.1 * variable.ParticleAge)"
],
"facing_camera_mode": "lookat_xyz",
"uv": {
"texture_width": 128,
"texture_height": 128,
"uv": [ 0, 24 ],
"uv_size": [ 8, 8 ]
}
}
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Mob Flame effect">Mob Flame effect</p></h1>
The mob flame effect is used by the Blaze when it's charging up to hurl fireballs. This is a flipbook flame effect that rises over time.</br></br>Unlike the earlier particles, this is a regular emitter. It is tied to an entity, thus uses the entity_aabb shape, as we want the flames to appear all over the blaze. As the effect is tied to the charged state, the activation expression is used, tied to the EntityFlag::CHARGED entity variable. This causes the flames to appear when the Blaze is charging, then to disappear when it isn't.</br></br>In this case, we use the texturewidth/height to make the texel "resolution" be one frame of animation, thus allowing advancement of the frames to be just 1:</br><h2></h2>
<br / ><textarea readonly="true" cols="63" rows="32">
{
"format_version": "1.10.0",
"particle_effect": {
"description": {
"identifier": "minecraft:mobflame_emitter",
"basic_render_parameters": {
"material": "particles_alpha",
"texture": "textures/flame_atlas"
}
},
"components": {
"minecraft:emitter_local_space": {
"position": true,
"rotation": true
},
"minecraft:emitter_rate_steady": {
"spawn_rate": "Math.random(15, 25)",
"max_particles": 50
},
"minecraft:emitter_lifetime_expression": {
"activation_expression": 1,
"expiration_expression": 0
},
"minecraft:emitter_shape_entity_aabb": {
"direction": [ 0, 1, 0 ]
},
"minecraft:particle_initial_speed": "Math.random(0, 1)",
"minecraft:particle_lifetime_expression": {
"max_lifetime": 1.25
},
"minecraft:particle_motion_dynamic": {
"linear_acceleration": [ 0, 1.0, 0 ],
"linear_drag_coefficient": 0.0
},
"minecraft:particle_appearance_billboard": {
"size": [ 0.5, 0.5 ],
"facing_camera_mode": "lookat_xyz",
"uv": {
"texture_width": 1,
"texture_height": 32,
"flipbook": {
"base_UV": [ 0, 0 ],
"size_UV": [ 1, 1 ],
"step_UV": [ 0, 1 ],
"frames_per_second": 32,
"max_frame": 32,
"stretch_to_lifetime": true,
"loop": false
}
}
}
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Smoke particle">Smoke particle</p></h1>
This particle is the general-purpose smoke puff. It appears on torches, furnaces, Blazes, etc. It is a simple particle with an upward motion consisting of an upwards acceleration tempered by drag. </br></br>The main feature of this particle different from the flame particle is the flipbook texture animation. See the details in the particle below, but the effect uses a flipbook subpart of the billboard appearance component to drive uv coordinates from frame to frame over time.</br></br>In addition, the use of texturewidth/height in the UV section of the billboard component allows referencing of UVs via texels for the flipbook:</br><h2></h2>
<br / ><textarea readonly="true" cols="121" rows="32">
{
"format_version": "1.10.0",
"particle_effect": {
"description": {
"identifier": "minecraft:basic_smoke_particle",
"basic_render_parameters": {
"material": "particles_alpha",
"texture": "textures/particle/particles"
}
},
"components": {
"minecraft:emitter_rate_instant": {
"num_particles": 1
},
"minecraft:emitter_lifetime_expression": {
"activation_expression": 1,
"expiration_expression": 0
},
"minecraft:emitter_shape_custom": {
"offset": [ 0, 0, 0 ],
"direction": [ "Math.random(-0.1, 0.1)", 1.0, "Math.random(-0.1, 0.1)" ]
},
"minecraft:particle_initial_speed": 1.0,
"minecraft:particle_lifetime_expression": {
"max_lifetime": "Math.random(0.4, 1.4)"
},
"minecraft:particle_motion_dynamic": {
"linear_acceleration": [ 0, 0.4, 0 ]
},
"minecraft:particle_appearance_billboard": {
"size": [ 0.1, 0.1 ],
"facing_camera_mode": "lookat_xyz",
"uv": {
"texture_width": 128,
"texture_height": 128,
"flipbook": {
"base_UV": [ 56, 0 ],
"size_UV": [ 8, 8 ],
"step_UV": [ -8, 0 ],
"frames_per_second": 8,
"max_frame": 8,
"stretch_to_lifetime": true,
"loop": false
}
}
},
"minecraft:particle_appearance_tinting": {
"color": [ "variable.ParticleRandom1*0.5", "variable.ParticleRandom1*0.5", "variable.ParticleRandom1*0.5", 1.0 ]
},
"minecraft:particle_appearance_lighting": {}
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h1><p id="Materials">Materials</p></h1>
There are several material options available that determine how particles handle transparency and color blending</br><h2></h2>
<table border="1" style="width:100%; border-style:solid; border-collapse:collapse; border-width:3;">
<tr> <th style="border-style:solid; border-width:3;">Name</th> <th style="border-style:solid; border-width:3;">Description</th> </tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">particles_add</td>
<td style="border-style:solid; border-width:3; padding:7px">Enables color blending and transparency in colored pixels, uses an additive blend mode</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">particles_alpha </td>
<td style="border-style:solid; border-width:3; padding:7px">Pixels with an alpha of 0 will be fully transparent, colored pixels will always be opaque</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">particles_blend</td>
<td style="border-style:solid; border-width:3; padding:7px">Enables color blending and transparency in colored pixels, uses a normal blend mode</br></td>
</tr>
</table>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h1><p id="Molang integration">Molang integration</p></h1>
Where it makes sense, any field can use a Molang expression. Molang expressions are strings, and are defined in the Molang documentation. The particle system uses some special Molang variables that particle Molang expressions can use. Additionally, custom Molang paramaters can be set in various ways and used in Molang expressions in effects.</br><h2></h2>
<table border="1" style="width:100%; border-style:solid; border-collapse:collapse; border-width:3;">
<tr> <th style="border-style:solid; border-width:3;">Name</th> <th style="border-style:solid; border-width:3;">Description</th> </tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.emitter_age</td>
<td style="border-style:solid; border-width:3; padding:7px">Age since the current loop started for the emitter</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.emitter_lifetime</td>
<td style="border-style:solid; border-width:3; padding:7px">How long the current loop lasts for the emitter</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.emitter_random_1</td>
<td style="border-style:solid; border-width:3; padding:7px">A random from 0.0 to 1.0 that is constant for the current loop of the emitter</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.emitter_random_2</td>
<td style="border-style:solid; border-width:3; padding:7px">Another random from 0.0 to 1.0 that is constant for the current loop of the emitter</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.emitter_random_3</td>
<td style="border-style:solid; border-width:3; padding:7px">A third random from 0.0 to 1.0 that is constant for the current loop of the emitter</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.emitter_random_4</td>
<td style="border-style:solid; border-width:3; padding:7px">A fourth random from 0.0 to 1.0 that is constant for the current loop of the emitter</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.entity_scale</td>
<td style="border-style:solid; border-width:3; padding:7px">When the effect is attached to an entity, this value is the scale of the entity</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.particle_age</td>
<td style="border-style:solid; border-width:3; padding:7px">How long the particle has lived</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.particle_lifetime</td>
<td style="border-style:solid; border-width:3; padding:7px">How long the particle lives for</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.particle_random_1</td>
<td style="border-style:solid; border-width:3; padding:7px">A random from 0.0 to 1.0 that is constant for the lifetime of the particle</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.particle_random_2</td>
<td style="border-style:solid; border-width:3; padding:7px">Another random from 0.0 to 1.0 that is constant for the lifetime of the particle</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.particle_random_3</td>
<td style="border-style:solid; border-width:3; padding:7px">A third random from 0.0 to 1.0 that is constant for the lifetime of the particle</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">variable.particle_random_4</td>
<td style="border-style:solid; border-width:3; padding:7px">A fourth random from 0.0 to 1.0 that is constant for the lifetime of the particle</br></td>
</tr>
</table>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h1><p id="Namespacing">Namespacing</p></h1>
All particle effects should be namespaced (in their name).</br></br>Namespacing involves adding a 'name:' prefix on the effect tag.</br></br>Regular Minecraft will use the 'minecraft: prefix. See the examples for example names.</br><a href="#Index">Back to top</a><br><br>
<h1><p id="Particles Entity Integration">Particles Entity Integration</p></h1>
</br>One of the primary uses for emitting particles in the Bedrock engine is particles associated with entities, such as mobs. Examples can be when the Blaze flames-up during it's attack sequence, or the Evoker's spell effect while summoning Vexes. The goal is to allow binding and management of particle effects attached to entities.</br></br>The following concepts are important for managing particles with entities via .json:</br>- Effect lists. These live in the resource definition of the entity's .json, along with textures, etc. These list the effects available to the entity, with an internal entity name for the effect, and the associated effect to play.</br>- Locators. These live in the geometry files, and specify a location in the geometry. These locators can be associated with bones, and thus follow the bone as it animates.</br>- Animation controller-based particle management. Using the Animation Controller state machine concept, one can trigger both fire-and-forget and sustained particle effects</br>- Animation timeline particle management. As part of an animation .json for the entity, one can set up a timeline that triggers particle effects at specified times while the animation is playing. Note that an actual physical animation is not needed, just the animation .json structure.</br></br>Particles that are attached to entities are intrinsically tied to those entities. If the entity ceases to exist, the particle effects cease as well. Emitters follow either the entity, or a locator on the entity.</br><h1><p id="Animation Controller effects">Animation Controller effects</p></h1>
</br>Animation controllers can specify effect events for their states. This allows for a list of particle effects to be started upon state entry, and for those particle effects to be automatically ended when leaving the state. For particles that don't terminate (or don't terminate prior to state transition), they will be terminated at state exit.</br></br>The schema is:</br>"particle_effects": [</br> // array of effect events</br>]</br>The array syntax allows for more than one effect to be triggered on state entry.</br></br>An example is the Blaze's flame-up effect in it's animation controller. This animation controller has two states, "default" and "flaming". It transitions between the two via the "query.is_charged" entity flag check. When in the "flaming" state, the "charged_flames" effect is started (with no locator or initialization Molang expression), and is terminated when the state exits.</br><h2></h2>
<br / ><textarea readonly="true" cols="47" rows="32">
{
"format_version": "1.8.0",
"animation_controllers": {
...
"controller.animation.blaze.flame": {
"states": {
"default": {
"transitions": [
{ "flaming": "query.is_charged" }
]
},
"flaming": {
"particle_effects": [
{
"effect": "charged_flames"
}
],
"transitions": [
{ "default": "!query.is_charged" }
]
}
}
},
...
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Animation Controller effects (continued)">Animation Controller effects (continued)</p></h1>
</br>Another example for the Evoker's spell effect. This causes the evoker to start up two "spell" effects, using the locator for the left and right hand. The spell effects themselves are continuous, so the emitters will emit particles until the evoker is no longer casting a spell.</br><h2></h2>
<br / ><textarea readonly="true" cols="47" rows="32">
{
"format_version": "1.8.0",
"animation_controllers": {
"controller.animation.evoker.general": {
"states": {
"default": {
...
"transitions": [
{ "casting": "query.is_casting" }
]
},
"casting": {
...
"particle_effects": [
{
"effect": "spell",
"locator": "left_hand"
},
{
"effect": "spell",
"locator": "right_hand"
}
],
"transitions": [
{ "default": "!query.is_casting" }
]
}
}
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Animation Timeline effects">Animation Timeline effects</p></h1>
Animations can also trigger particle effects. These are fire-and-forget effects that are tied to a timeline, when the animation hits that time point, the effect(s) are fired.</br><h2></h2>
<br / ><textarea readonly="true" cols="34" rows="14">
"particle_effects": {
"time1" : [
// array of effect events
],
"time2" : [
// array of effect events
],
"time3" : {
// single effect
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Animation Timeline effects (continued)">Animation Timeline effects (continued)</p></h1>
time1/time2/etc are numerical time points, e.g. "0.0". </br></br>In this example, when the cat sits down, after 3 seconds a smoke puff is generated:</br><h2></h2>
<br / ><textarea readonly="true" cols="35" rows="25">
{
"format_version": "1.8.0",
"animations": {
...
"animation.cat.sit": {
"loop": true,
"animation_length": 5.0,
"bones": {
// bone animation stuff
},
"particle_effects": {
"3.0": [
{
"effect": "smoke_puff"
}
]
}
},
...
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Effect Event">Effect Event</p></h1>
</br>Particle events in the entity have the following properties:</br>- "effect" is the effect name specified in the entity's resource definition .json (the particle effect list), this specifies what particle effect to start/play</br>- "locator" is an optional parameter that maps to a locator of the same name in the resource definition. By specifying a locator, the emitter will follow that locator around as the entity animates, including orientation. If this is not specified, the effect will occur at the origin of the entity.</br>- "pre_effect_script" is an optional parameter that is a Molang expression run at emitter startup time. This can set up Molang variables, (for example 'particle color'), which can be then referred to inside the particle effect .json itself.</br><h2></h2>
<br / ><textarea readonly="true" cols="43" rows="8">
{
"effect": "internal_name",
"locator": "locator_name", // optional
"pre_effect_script" // optional
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Effect List">Effect List</p></h1>
The effect list is a list of internal effect names to actual particle effects bindings. This is the general form for adding particle effects to an entity. The effect list consists of a list of shorthand names to actual effects. All references to effects will use the shorthand name in animations and animation controllers. Note that this by itself will not cause the particle effect to appear.</br><h2></h2>
<br / ><textarea readonly="true" cols="47" rows="17">
{
"format_version": "1.8.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:entity_name",
...
"particle_effects": {
"shorthand_name1": "effect_name1",
"shorthand_name2": "effect_name2",
},
...
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<h1><p id="Effect List (continued)">Effect List (continued)</p></h1>
This is an example of the flame-up effect for the Blaze. Inside the "description" section of an entity's resource definition we can add a "particle_effects" section that has a name/value pair. The name is the name that other .json in the entity will refer to, while the value is the name of the particle effect, as specified in the particle effect's .json.</br><h2></h2>
<br / ><textarea readonly="true" cols="59" rows="20">
{
"format_version": "1.8.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:blaze",
...
"particle_effects": {
"charged_flames": "minecraft:mobflame_emitter"
},
...
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h1><p id="Particles Examples Pack">Particles Examples Pack</p></h1>
https://aka.ms/MCParticlesPack</br></br>Examples of various particles can be found in the link above. These are examples of various stand-alone particle effects. The particle effects provided as part of the Minecraft installation are tuned to be used with the Minecraft game, and thus do not serve as good examples. Please refer to the examples in the pack to see various ways to utilize the particle system. </br></br>To invoke an example particle with the examples particles pack enabled, bring up the console, type "/particle name x y z" where "name" is the name of the particle effect, and x/y/z are the coordinates the particle appears at.</br></br>For example, "/particle minecraft:example_smoke_puff 0 5 0" will spawn a smoke puff at the origin of the world, 5 blocks up from the bottom of the world. </br>"/particle minecraft:example_smoke_puff ~ ~1 ~5" will create that smoke puff about 5 blocks away from the player.</br><h2>Example Effects</h2>
<table border="1" style="width:100%; border-style:solid; border-collapse:collapse; border-width:3;">
<tr> <th style="border-style:solid; border-width:3;">Name</th> <th style="border-style:solid; border-width:3;">Description</th> </tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_bezier_chaincurve</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates the use of a bezier chain curve in an effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_beziercurve</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates the use of a bezier curve in an effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_blendmode_add</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates particles_add material with texture of varying opacity</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_blendmode_alpha</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates particles_alpha material with texture of varying opacity</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_blendmode_blend</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates particles_blend material with texture of varying opacity</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_bounce</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates collision detection and bouncing for particles</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_catmullromcurve</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates the use of a catmull-rom curve in an effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_colorcurve</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates the use of a color-gradient approach to color variation in an effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_colorcurve2</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates the use of a color-gradient approach with variable spacing in an effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_combocurve</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates the use of a variety of curves in an effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_directional_sphere</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates the use of directional billboard facing in an effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_entity_sparkle_aabb</td>
<td style="border-style:solid; border-width:3; padding:7px">When attached to an entity, this effect creates a sparkle effect with the rough axis-aligned bounding box around the entity</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_entity_sparkle_box</td>
<td style="border-style:solid; border-width:3; padding:7px">When attached to an entity, this effect creates a sparkle effect in a box around the entity</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_expire_on_contact</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates particles disappearing when colliding with the terrain</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_flipbook</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates texture uv flipbook technique, of applying successive frames of a texture for visual animation</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_highrestitution</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates particle collision with particles gaining energy on each bounce</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_linearcurve</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates a piecewise linear curve in an effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_particle_event_system</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates various particle events executing</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_smoke_puff</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates a general smoke puff effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_spiral</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates a parametric motion spiral effect</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:example_watertest</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates excluding particles from various block types, in this case, particles only survive in water</br></td>
</tr>
<tr>
<td style="border-style:solid; border-width:3; padding:7px">minecraft:fireworks_events_demo</td>
<td style="border-style:solid; border-width:3; padding:7px">Demonstrates sequencing various particle effects together via events to create a fireworks effect</br></td>
</tr>
</table>
<a href="#Index">Back to top</a><br><br>
<br><br>
<h1><p id="Structure In Detail">Structure In Detail</p></h1>
<h2></h2>
Outline:<br / ><textarea readonly="true" cols="100" rows="32">
{
// specifies the format version of the particle. Only particles of a particular set of versions
// will work with the game
"format_version": "1.10.0",
"particle_effect": {
// general data for the particle effect
"description": {
// e.g. "minecraft:test_mule", this is the name the particle emitter is referred to as
"identifier": <string>,
// Basic render parameters are basic rendering
// properties like the texture used, or the material used.
// All particles require a material to render, and a
// texture to draw.
"basic_render_parameters": {
"material": <string>
"texture": <string>
},
},
"curves": {
// curves are described elsewhere in the document
},
"events": {
// events are described elsewhere in the document
},
"components: {
/////////////////////////////////////////////////////////////////////
// Emitter related components
// these components primarily affect the emitter bevahior
// emitter initial state components set up the emitter with
// particular properties
// emitter rate components control when particles get emitted
// these will be run every frame for the emitter to determine if any
// particles need to be spawned
// emitter lifetime components control the lifetime of the emitter
// and the "enabled/disabled" state of the emitter.
// Emitters can only spawn particles if enabled.
// emitter shapecomponents control where a particle gets emitted
// and initial shape-driven state such as particle direction
// emitter local space components
// this component specifies whether entity-based emitters
// simulate in local or global space
/////////////////////////////////////////////////////////////////////
// Particle related components
// these components primarily affect the particle behavior
// particle initial condition components control what the initial state
// of the particles is, such as initial speed, rotation, etc.
// These are run once at particle creation
// particle motion components control what happens to the particle
// on frames after creation, such as it's position (for
// a parametric particle), drag/acceleration (for a dynamic
// particle), etc.
// These are run once per frame per particle
// particle appearance components control how the particle is rendered
// such as what UV coortinates to use, size of the particle,
// billboard orientation, color tinting, etc.
// These are run once per frame for visible particles
// these components handle when the particle expires
}
}
}
</textarea> </br>
<a href="#Index">Back to top</a><br><br>