Inventory Particles

Inventory Particles

Beautiful particles for your inventory items! Make your inventory more alive and dynamic! ✨ Now with modded items support! ✨

by
2.0M Downloads
fabricforgeneoforgecurseddecorationgame-mechanics
Configure a Compatible Minecraft Server

Screenshots

Banner [GIF]

About this Mod

Discord link to the Github Link-Banner [Support Link-Banner [Boosty]](https://boosty.to/lopymine/donate)

CurseForge Link-Banner Modrinth Link-Banner

Inventory Particles — Visual mod which adds a lot of new particles for your inventory items! With it you can make your inventory more lively and dynamic! Of course, completely client-side.

Ingame Showcase

Label
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Showcase
Just decoration here

You’re probably wondering how the mod handles items from other mods? Well, starting with version v2.0.0, 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": [
				"inventory_particles:dust/dust_0.png",
				"inventory_particles:dust/dust_1.png",
				"inventory_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
}

Just decoration here

All particles in Inventory Particles are data driven! This means that you can add more particles just by using resource packs and some basic configs!

You can customize:

  1. Physics (acceleration, braking, impulses, etc.)
  2. Rotations (actual and visual)
  3. Sizes (+ animations)
  4. Colors (+ animations)
  5. Texture (+ animations)
  6. Holders (items from which they will spawn)
  7. Spawn Area (just with additional texture)
  8. Life Time (ticks)
  9. 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": [
		"inventory-particles:example/texture_0.png",
		"inventory-particles:example/texture_1.png"
	],
	
	"holders": [
		{
			"item": "minecraft:potion",
			"spawn_area": "example_spawn_area.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],
				"cursor_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],
				"cursor_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],
				"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],
				"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]
				}
			}
		}
	}
}

Just decoration here

Showcase

Icon 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

See the original mod repository.

Available Versions

[forge/1.20.1] Inventory Particles v2.6.0release
MC 1.20.1forge
July 11, 2026
[neoforge/26.2] Inventory Particles v2.6.0release
MC 26.2neoforge
July 11, 2026
[neoforge/26.1-26.1.2] Inventory Particles v2.6.0release
MC 26.1, 26.1.1, 26.1.2neoforge
July 11, 2026
[neoforge/1.21.11] Inventory Particles v2.6.0release
MC 1.21.11neoforge
July 11, 2026
[neoforge/1.21.1] Inventory Particles v2.6.0release
MC 1.21.1neoforge
July 11, 2026

How to Install Inventory Particles on Your Client

1

Install the Mod Loader Locally

Install fabric for your local Minecraft version.

2

Download the Matching File

Choose the Inventory Particles file for fabric and Minecraft 26.2.

3

Install Mod

Place the .jar file in your local .minecraft/mods folder and restart Minecraft. No server-side installation is required.

Compatibility

Mod Loaders

fabricforgeneoforge

Minecraft Versions

26.2, 26.1.2, 26.1.1 (+14 more)

Server-side

Unsupported

Recommended RAM

4 GB(min. 3 GB)

Frequently Asked Questions

Does Inventory Particles need to be installed on the Minecraft server?

No. Modrinth marks Inventory Particles as unsupported on the server side. Install it only in your local Minecraft mods folder. Your server can remain unchanged unless the mod page lists an additional dependency.

Which version and loader does Inventory Particles require?

Use a file for fabric, forge, neoforge and your exact Minecraft version. Supported versions include 26.2, 26.1.2, 26.1.1. Files for different loaders are not interchangeable.

Inventory Particles is not working – what should I check?

First check the Minecraft version, loader version and required dependencies. Put the .jar file in your local .minecraft/mods folder and remove older duplicates. Because this mod is client-side, adding server RAM will not fix it.

Minecraft Server for Your Group

Inventory Particles stays on your client. Host a compatible world for your group.

Recommended RAM
4 GBfrom €5.2/mo
Minimum 3 GB | per 8 players
Create Server Now
Client Compatibility Guide
NVMe SSD Storage
DDoS Protection included

Details

License
Creative Commons Attribution No Derivatives 4.0 International
Server-side
Unsupported

Supported Versions

26.226.1.226.1.126.11.21.111.21.101.21.91.21.81.21.71.21.6+7 more