Skip to content
shadowmaster435 edited this page Apr 11, 2024 · 7 revisions

Here you will find a tutorial on how to make particle packs.

An example pack can be found here

Important Notes

  • Sprite resolutions must be the same for each sprite in a particle

  • You must put files in specific folders

Particle textures go here

assets/biomeparticleweather/textures/particle

Particle jsons go here

assets/biomeparticleweather/particles/custom/

  • A barebones minimum requirement particle looks like this.
{
"type": "default",
"sprite": {
    "frames": [
      "biomeparticleweather:somesprite"
    ]
  }
}
  • All other parameters are 100% optional and will default to values show in their respective entry.

  • You can omit any of the 3 axis in any parameter requiring them, even working if left empty.

  • You may use "all" instead to make all 3 axis use this value.

Clone this wiki locally