EpicKnarvik97 ad5dabc712
All checks were successful
EpicKnarvik97/KnarLib/pipeline/head This commit looks good
Adds code for spawning customizable particle and trail effects
2023-07-08 15:20:59 +02:00

39 lines
748 B
Java

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,
}