All checks were successful
EpicKnarvik97/KnarLib/pipeline/head This commit looks good
39 lines
748 B
Java
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,
|
|
|
|
}
|