Compatibility
Minecraft: Java Edition
26.2-snapshot-7
26.1.x
1.21.x
1.20.x
1.19.x
1.18.x
1.17.x
Tags
Creators
Details
Licensed CC-BY-SA-4.0
Published last month
A simple resource pack that removes all particles from the game using core shaders, even works with mods!
• How?
Instead of overwriting particle textures, this pack simply tells the game not to render them at all. This results in better performance and a true no particle experience.
• Sodium?
You can use this resource pack with Sodium if you have the Sodium Core Shader Support mod installed; it may display a warning stating that it may be incompatible, although it should work just fine.
• >1.17?
No, it is not possible to port this to pre 1.17 versions because core shaders could not be modified through resource packs before that.
particle.fsh & particle.vsh
particle.fsh
#version 330
void main()
{
discard;
}
particle.vsh
#version 330
void main()
{
gl_Position = vec4(0.0, 0.0, 0.0, 0.0);
}


