Black spore particle
This commit is contained in:
parent
99f5a20d0b
commit
ae172a1517
11 changed files with 107 additions and 4 deletions
|
@ -9,6 +9,7 @@ import net.minecraft.util.registry.Registry;
|
|||
import ru.betterend.BetterEnd;
|
||||
import ru.betterend.particle.InfusionParticle;
|
||||
import ru.betterend.particle.InfusionParticleType;
|
||||
import ru.betterend.particle.ParticleBlackSpore;
|
||||
import ru.betterend.particle.ParticleGeyser;
|
||||
import ru.betterend.particle.ParticleGlowingSphere;
|
||||
import ru.betterend.particle.ParticleSnowflake;
|
||||
|
@ -23,6 +24,7 @@ public class EndParticles {
|
|||
public static final DefaultParticleType GEYSER_PARTICLE = registerFar("geyser_particle");
|
||||
public static final DefaultParticleType SNOWFLAKE = register("snowflake");
|
||||
public static final DefaultParticleType AMBER_SPHERE = register("amber_sphere");
|
||||
public static final DefaultParticleType BLACK_SPORE = register("black_spore");
|
||||
|
||||
public static void register() {
|
||||
ParticleFactoryRegistry.getInstance().register(GLOWING_SPHERE, ParticleGlowingSphere.FactoryGlowingSphere::new);
|
||||
|
@ -32,6 +34,7 @@ public class EndParticles {
|
|||
ParticleFactoryRegistry.getInstance().register(GEYSER_PARTICLE, ParticleGeyser.FactoryGeyser::new);
|
||||
ParticleFactoryRegistry.getInstance().register(SNOWFLAKE, ParticleSnowflake.FactorySnowflake::new);
|
||||
ParticleFactoryRegistry.getInstance().register(AMBER_SPHERE, ParticleGlowingSphere.FactoryGlowingSphere::new);
|
||||
ParticleFactoryRegistry.getInstance().register(BLACK_SPORE, ParticleBlackSpore.FactoryBlackSpore::new);
|
||||
}
|
||||
|
||||
private static DefaultParticleType register(String name) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue