
Modrinth · Minecraft mod
Item Particles
Beautiful particles for your world items! Dropped, held, frames and shelfs items support!
Quick answer
Which Item Particles release should I use?
Item Particles 1.1.0+26.2+neoforge targets 26.2 with NeoForge. It must be installed on the client. Do not install it on the dedicated server. All 1 required mods have matching files.
Where it goes
Is Item Particles required on the client, server, or both?
It must be installed on the client. Do not install it on the dedicated server.
This file is marked client-only.
What else does Item Particles 1.1.0+26.2+neoforge need?
1.1.0+26.2+neoforge. Change the file and its required mods may change too.
Install MossyLib first. We found matching files for this game-version and loader setup.
We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add Item Particles without breaking your instance.
Built for Item Particles 1.1.0+26.2+neoforge. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use 1.1.0+26.2+neoforge. It targets 26.2 with NeoForge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install MossyLib first. We found matching files for this game-version and loader setup.
- 03
Put it on the correct side
It must be installed on the client. Do not install it on the dedicated server.
- 04
Pick the file you checked
Use the “Get this file” button beside 1.1.0+26.2+neoforge. It opens that exact file at the source.
About this project
What does Item Particles add?
[
](https://boosty.to/lopymine/donate)
Item Particles — Visual mod which adds a lot of new particles for your world items! With this mod they will look more interactive and dynamic! Completely client-side.
This mod is based on another my mod: Inventory Particles,
So, if you’re already familiar with it, expect to see the same particles, just in the world!
1) Third Person

2) First Person

3) Dropped Items

4-5) Shelf & Frame Items

🤔 "Seems too many particles"
If it seems like there are too many of them, you can easily adjust their count and cooldown in the configuration menu, to perfectly complement your gameplay!



You’re probably wondering how the mod handles items from other mods? Well, the mod features its own system for generating "family" particles!
You don't need to do anything — the mod handles it all for you!
In short: The mod includes config files that define item "categories" and "varieties." It analyzes the items and, based on these configs, assigns particles, potentially recolors them, and sets up unique spawn areas for the items themselves.
Example Family Config
{
"keywords": [
"powder",
"gunpowder",
"sugar",
"dust",
"dye",
"ash",
"ashen"
],
"tags": [
"c:dusts"
],
"particles": [
{
"id": "family/dust/dust",
"textures": [
"item_particles:dust/dust_0.png",
"item_particles:dust/dust_1.png",
"item_particles:dust/dust_2.png"
],
"texture_generation_mode": {
"luminance": true,
"saturation": true,
"frequency": true
},
"spawn_count": [0, 2],
"spawn_frequency": [10, 20],
"speed_coefficient": 0.25,
"nbt_conditions_match": "any",
"nbt_conditions": []
}
],
"family_groups": [],
"compatible": false,
"priority": 1500
}


All particles are data driven! This means that you can add more particles just by using resource packs and some basic configs!
You can customize:
- Physics (acceleration, braking, impulses, etc.)
- Rotations (actual and visual)
- Sizes (+ animations)
- Colors (+ animations)
- Texture (+ animations)
- Holders (items from which they will spawn)
- Spawn Area (just with additional texture)
- Life Time (ticks)
- And other little things ^^
See the official wiki to learn how thing works here!
Example Config
{
"life_time": 100,
"animation_type": "stretch",
"animation_speed": 1.0,
"size": {
"width": 8.0,
"height": 8.0
},
// or
"size": {
// https://nicmulvaney.com/easing
"interpolation": "ease_in_quint",
"sizes": {
"0": {
"width": 16.0,
"height": 16.0,
// Overrides "ease_in_quint"
"interpolation": "linear"
},
"50": {
"width": 32.0,
"height": 32.0
},
"100": {
"width": 64.0,
"height": 64.0
}
}
},
"textures": [
"item_particles:example/texture_0.png",
"item_particles:example/texture_1.png"
],
"holders": [
{
"item": "minecraft:potion",
"spawn_area": "example_spawn_area.png",
// or
"spawn_area": "#full",
// or
"spawn_area": {
"minecraft:block/grass_block_side": "particles_area_on_side.png",
"minecraft:block/grass_block_top": "particles_area_on_top.png"
},
// or
"spawn_area": {
"minecraft:block/grass_block_side": "#full",
"minecraft:block/grass_block_top": "particles_area_on_top.png"
},
"spawn_count": [0, 1],
"spawn_frequency": [5, 20],
"speed_coefficient": 0.3,
"color": "#AARRGGBB",
// or
"color": {
// mixed, random, random_static, gradient, gradient_random_static, gradient_loop, gradient_bounce
"mode": "gradient",
"values": ["#FF8CC091", "#003700", "nbt", "nbt_list"],
"speed": 5.0
},
"nbt_conditions_match": "none",
"nbt_conditions": [
{
"this_name": "components",
"this_type": "object",
"next_match": "any",
"next": {
"this_name": "minecraft:potion_contents",
"this_type": "object",
"next_match": "any",
"next": [
{
"this_name": "potion",
"this_type": "string",
"check_value": "minecraft:water"
}
]
}
}
]
}
],
"physics": {
"base": {
"x_speed": {
"impulse": [0.0, 0.0],
"impulse_bidirectional": false,
"acceleration": 0.0,
"acceleration_bidirectional": false,
"max_acceleration": [-100.0, 100.0],
"braking": 0.0,
"turbulence": [0.0, 0.0],
"impulse_inherit_coefficient": 1.0
},
"y_speed": {
"impulse": [0.0, 0.0],
"impulse_bidirectional": false,
"acceleration": 0.0,
"acceleration_bidirectional": false,
"max_acceleration": [-100.0, 100.0],
"braking": 0.0,
"turbulence": [0.0, 0.0],
"impulse_inherit_coefficient": 1.0
},
"angle_speed": {
"impulse": [1.0, 1.5],
"impulse_bidirectional": false,
"acceleration": 0.0,
"acceleration_bidirectional": false,
"max_acceleration": [-100.0, 100.0],
"braking": 0.0,
"turbulence": [0.0, 0.0]
}
},
"rotation": {
"particle": {
"spawn_angle": [0.0, 360.0],
"spawn_azimuth": [0.0, 360.0],
"rotate_in_movement_direction": false,
"speed": {
"impulse": [0.0, 0.0],
"impulse_bidirectional": false,
"acceleration": 0.0,
"acceleration_bidirectional": false,
"max_acceleration": 0.0,
"braking": 0.0,
"turbulence": [0.0, 0.0]
}
},
"texture": {
"spawn_angle": [0.0, 0.0],
"spawn_azimuth": [0.0, 360.0],
"rotate_in_movement_direction": false,
"speed": {
"impulse": [0.0, 0.0],
"impulse_bidirectional": true,
"acceleration": 0.0,
"acceleration_bidirectional": false,
"max_acceleration": 0.0,
"braking": 0.0,
"turbulence": [0.0, 0.0]
}
}
}
}
}


Want to support mod and authors? Just tell everyone about this mod!
Yeah, you got it right. Just by advertising, you will support the mod and the creators well. The more people will know about this mod, the more downloads it will have, more downloads will give good motivation to authors and increase income from the site (literally free donation). Remember, advertising must not be intrusive and annoiyng!
What you can do?
- Make a video review / advertisement
- Tell your friends about this mod
- Just download this mod (if you want to play with it :D)
📑 Licensing
Project description from Modrinth.
Pick your setup
Item Particles by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
26.2
2 loader builds26.1.2
2 loader builds26.1.1
2 loader builds26.1
2 loader builds1.21.11
2 loader buildsCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Item Particles versions and loaders
1.1.0+26.2+neoforge
ItemParticles-1.1.0+26.2+neoforge.jar
12 Sept 2026
1.1.0+26.1+neoforge
ItemParticles-1.1.0+26.1+neoforge.jar
12 Sept 2026
1.1.0+1.21.11+neoforge
ItemParticles-1.1.0+1.21.11+neoforge.jar
12 Sept 2026
1.1.0+26.2+fabric
ItemParticles-1.1.0+26.2+fabric.jar
12 Sept 2026
1.1.0+26.1+fabric
ItemParticles-1.1.0+26.1+fabric.jar
12 Sept 2026
1.1.0+1.21.11+fabric
ItemParticles-1.1.0+1.21.11+fabric.jar
12 Sept 2026
1.0.0+26.2+neoforge
ItemParticles-1.0.0+26.2+neoforge.jar
7 Sept 2026
1.0.0+26.1+neoforge
ItemParticles-1.0.0+26.1+neoforge.jar
7 Sept 2026
1.0.0+1.21.11+neoforge
ItemParticles-1.0.0+1.21.11+neoforge.jar
7 Sept 2026
1.0.0+26.2+fabric
ItemParticles-1.0.0+26.2+fabric.jar
7 Sept 2026
1.0.0+26.1+fabric
ItemParticles-1.0.0+26.1+fabric.jar
7 Sept 2026
1.0.0+1.21.11+fabric
ItemParticles-1.0.0+1.21.11+fabric.jar
7 Sept 2026
Looking for an older file? The official Modrinth project page is in Resources.

