Interface ParticleFactoryRegistry.PendingParticleFactory<T extends net.minecraft.particle.ParticleEffect>

Type Parameters:
T - The type of particle effects this factory deals with.
Enclosing interface:
ParticleFactoryRegistry
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public static interface ParticleFactoryRegistry.PendingParticleFactory<T extends net.minecraft.particle.ParticleEffect>
A pending particle factory.
  • Method Summary

    Modifier and Type Method Description
    net.minecraft.client.particle.ParticleFactory<T> create​(FabricSpriteProvider provider)
    Called to create a new particle factory.
  • Method Details

    • create

      net.minecraft.client.particle.ParticleFactory<T> create​(FabricSpriteProvider provider)
      Called to create a new particle factory.

      Particle sprites will be loaded from domain:/particles/particle_name.json as per vanilla minecraft behaviour.

      Parameters:
      provider - The sprite provider used to supply sprite textures when drawing the mod's particle.
      Returns:
      A new particle factory.