package net.knarcraft.knarlib.particle; /** * The mode used for spawning one or more particle(s) */ public enum ParticleMode { /** * Spawns the set amount of particles on a single point in the world */ SINGLE, /** * Spawns the set amount of particles in a square around the block */ SQUARE, /** * Spawns the set amount of particles in a circle around the block */ CIRCLE, /** * Spawns the set amount of particles in a pyramid centered on the block */ PYRAMID, /** * Spawns the set amount of particles in a sphere centered on the block */ SPHERE, /** * Spawns the set amount of particles in a cube centered on the block */ CUBE, }