💾Parameters explanations

Here you will learn how to use every parameters of the particle creator

Example particle
{
    "name": "RainbowCircle",
    "enable": true,
    "particle": "REDSTONE",
    "removeFromPlayableSet": false,
    "item": "GOLDEN_APPLE:0",
    "showWithParticle": [
        "<ANOTHER PARTICLE>", "<ANOTHER PARTICLE2>"
    ],
    "shapeParticle": [
      {
        "key": "SHAPE_CIRCLE",
        "option": "20;0.66"
      },
      {
        "key": "MASK_PLAYERFOLLOW",
        "option": ""
      }
    ],
    "colorCreator": [
      {
        "key": "RAINBOW",
        "option": "10000;true"
      }
    ]
}

First of all we have basics parameters like name, whether or not the particle is currently enable

To see a particle in the particle selector in your games, the player has to have the permission: elytraracing.particle.<nameoftheparticle>

Available particles:

Support coloration: REDSTONE

Others: Printed in the console at start

New Particle Association ! (showWith and removeFromPlayableSet)

showWith is a new parameter that allow you to display multiple particle at once (that way you are able to create particle that have multiple section for example and each has its own shape and color)

Particle associated to a particle must be in the list of particle above the one you are working on and ENABLED !

removeFromPlayableSet is a new parameter that allow you linked to showWith to create particle that won't be able to be played by players in game (Only by associating them with others)

Key customisation

There are 2 main parameters that we will explain here:

⭕ShapeParticle🎨ColorCreator

Last updated

Was this helpful?