Back to top
Emitter Shape Point component
All particles come out of a point offset from the emitter.
Back to top
Emitter Shape Sphere component
All particles come out of a sphere offset from the emitter.
Back to top
Initial State Components
Emitter Initialization component
This component allows the emitter to run some Molang at creation, primarily to populate any Molang variables that get used later.
Back to top
Emitter Local Space component
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.
Back to top
Particle Components
Particle Appearance Components
Particle Appearance Billboard component
This component tells the particle system to render the particle as a billboard, a rectangle in the world facing a particluar direction.
Back to top
Particle Appearance Lighting
When this component exists, particle will be tinted by local lighting conditions in-game.
Back to top
Particle Appearance Tinting component
Color tinting of the particle is controlled by this component:
Back to top
Particle Initial State Components
Particle Initial Speed component
Starts the particle with a specified speed, using the direction specified by the emitter shape.
Back to top
Particle Initial State component
Starts the particle with a specified orientation and rotation rate.
Back to top
Particle Lifetime Components
Particle Expire If In Blocks component
Particles expire when in a block of the type in the list. Note: this component can exist alongside particle_lifetime_expression.
Back to top
Particle Expire If Not In Blocks component
Particles expire when in a block of the type not in the list. Note: this component can exist alongside particle_lifetime_expression.
Back to top
Particle Lifetime Events component
This component allows for triggering events based on various lifetime events.
Back to top
Particle Lifetime Expression component
Standard lifetime component. These expressions control the lifetime of the particle.
Back to top
Particle Lifetime Kill-Plane component
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.
Back to top
Particle Motion Components
Particle Motion Collision component
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.
Back to top
Particle Motion Dynamic component
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.
Back to top
Particle Motion Parametric component
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.
Back to top
Curves
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.
Back to top
Events
Events can be triggered elsewhere in the .json and fire off new particle and sound effects.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.Sound effects specify the specific "level sound event" to be played when the event fires.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.
Back to top
Examples
Bouncing Bubbles
This particle effect generates a bunch of bubbles that bounce around.
Back to top
Flame particle
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.In addition, the use of texturewidth/height in the UV section of the billboard component allows referencing of UVs via texels:
Back to top
Mob Flame effect
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.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.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:
Back to top
Smoke particle
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. 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.In addition, the use of texturewidth/height in the UV section of the billboard component allows referencing of UVs via texels for the flipbook:
Back to top
Materials
There are several material options available that determine how particles handle transparency and color blending
Name | Description |
particles_add |
Enables color blending and transparency in colored pixels, uses an additive blend mode |
particles_alpha |
Pixels with an alpha of 0 will be fully transparent, colored pixels will always be opaque |
particles_blend |
Enables color blending and transparency in colored pixels, uses a normal blend mode |
Back to top
Molang integration
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.
Name | Description |
variable.emitter_age |
Age since the current loop started for the emitter |
variable.emitter_lifetime |
How long the current loop lasts for the emitter |
variable.emitter_random_1 |
A random from 0.0 to 1.0 that is constant for the current loop of the emitter |
variable.emitter_random_2 |
Another random from 0.0 to 1.0 that is constant for the current loop of the emitter |
variable.emitter_random_3 |
A third random from 0.0 to 1.0 that is constant for the current loop of the emitter |
variable.emitter_random_4 |
A fourth random from 0.0 to 1.0 that is constant for the current loop of the emitter |
variable.entity_scale |
When the effect is attached to an entity, this value is the scale of the entity |
variable.particle_age |
How long the particle has lived |
variable.particle_lifetime |
How long the particle lives for |
variable.particle_random_1 |
A random from 0.0 to 1.0 that is constant for the lifetime of the particle |
variable.particle_random_2 |
Another random from 0.0 to 1.0 that is constant for the lifetime of the particle |
variable.particle_random_3 |
A third random from 0.0 to 1.0 that is constant for the lifetime of the particle |
variable.particle_random_4 |
A fourth random from 0.0 to 1.0 that is constant for the lifetime of the particle |
Back to top
Namespacing
All particle effects should be namespaced (in their name).Namespacing involves adding a 'name:' prefix on the effect tag.Regular Minecraft will use the 'minecraft: prefix. See the examples for example names.Back to top
Particles Entity Integration
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.The following concepts are important for managing particles with entities via .json:- 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.- 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.- Animation controller-based particle management. Using the Animation Controller state machine concept, one can trigger both fire-and-forget and sustained particle effects- 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.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.Animation Controller effects
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.The schema is:"particle_effects": [ // array of effect events]The array syntax allows for more than one effect to be triggered on state entry.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.
Back to top
Animation Controller effects (continued)
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.
Back to top
Animation Timeline effects
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.
Back to top
Animation Timeline effects (continued)
time1/time2/etc are numerical time points, e.g. "0.0". In this example, when the cat sits down, after 3 seconds a smoke puff is generated:
Back to top
Effect Event
Particle events in the entity have the following properties:- "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- "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.- "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.
Back to top
Effect List
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.
Back to top
Effect List (continued)
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.
Back to top
Particles Examples Pack
https://aka.ms/MCParticlesPackExamples 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. 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.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. "/particle minecraft:example_smoke_puff ~ ~1 ~5" will create that smoke puff about 5 blocks away from the player.Example Effects
Name | Description |
minecraft:example_bezier_chaincurve |
Demonstrates the use of a bezier chain curve in an effect |
minecraft:example_beziercurve |
Demonstrates the use of a bezier curve in an effect |
minecraft:example_blendmode_add |
Demonstrates particles_add material with texture of varying opacity |
minecraft:example_blendmode_alpha |
Demonstrates particles_alpha material with texture of varying opacity |
minecraft:example_blendmode_blend |
Demonstrates particles_blend material with texture of varying opacity |
minecraft:example_bounce |
Demonstrates collision detection and bouncing for particles |
minecraft:example_catmullromcurve |
Demonstrates the use of a catmull-rom curve in an effect |
minecraft:example_colorcurve |
Demonstrates the use of a color-gradient approach to color variation in an effect |
minecraft:example_colorcurve2 |
Demonstrates the use of a color-gradient approach with variable spacing in an effect |
minecraft:example_combocurve |
Demonstrates the use of a variety of curves in an effect |
minecraft:example_directional_sphere |
Demonstrates the use of directional billboard facing in an effect |
minecraft:example_entity_sparkle_aabb |
When attached to an entity, this effect creates a sparkle effect with the rough axis-aligned bounding box around the entity |
minecraft:example_entity_sparkle_box |
When attached to an entity, this effect creates a sparkle effect in a box around the entity |
minecraft:example_expire_on_contact |
Demonstrates particles disappearing when colliding with the terrain |
minecraft:example_flipbook |
Demonstrates texture uv flipbook technique, of applying successive frames of a texture for visual animation |
minecraft:example_highrestitution |
Demonstrates particle collision with particles gaining energy on each bounce |
minecraft:example_linearcurve |
Demonstrates a piecewise linear curve in an effect |
minecraft:example_particle_event_system |
Demonstrates various particle events executing |
minecraft:example_smoke_puff |
Demonstrates a general smoke puff effect |
minecraft:example_spiral |
Demonstrates a parametric motion spiral effect |
minecraft:example_watertest |
Demonstrates excluding particles from various block types, in this case, particles only survive in water |
minecraft:fireworks_events_demo |
Demonstrates sequencing various particle effects together via events to create a fireworks effect |
Back to top
Structure In Detail
Outline:
Back to top