Uses of Enum Class
dev.wyck.wrapper.environment.particle.ParticleTypes
Packages that use ParticleTypes
-
Uses of ParticleTypes in dev.wyck.model.biome
Methods in dev.wyck.model.biome with parameters of type ParticleTypesModifier and TypeMethodDescriptionCustomBiome.Builder.particle(ParticleTypes type, float probability) CustomBiome.Builder.particle(ParticleTypes type, float probability, @Nullable ParticleData data) -
Uses of ParticleTypes in dev.wyck.wrapper.environment.particle
Subclasses with type arguments of type ParticleTypes in dev.wyck.wrapper.environment.particleModifier and TypeClassDescriptionenumAn enum that wraps around Minecraft's ParticleTypes, providing additional metadata and functionality.Classes in dev.wyck.wrapper.environment.particle that implement interfaces with type arguments of type ParticleTypesModifier and TypeClassDescriptionenumAn enum that wraps around Minecraft's ParticleTypes, providing additional metadata and functionality.Fields in dev.wyck.wrapper.environment.particle with type parameters of type ParticleTypesModifier and TypeFieldDescriptionstatic final RegisteredConstantTranslator<ParticleTypes> ParticleTypes.TRANSLATORMethods in dev.wyck.wrapper.environment.particle that return ParticleTypesModifier and TypeMethodDescriptionstatic @Nullable ParticleTypesReturns the constant whose namespaced key matches (e.g.AmbientParticle.type()Gets the particle type.static ParticleTypesReturns the enum constant of this class with the specified name.static ParticleTypes[]ParticleTypes.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in dev.wyck.wrapper.environment.particle that return types with arguments of type ParticleTypesMethods in dev.wyck.wrapper.environment.particle with parameters of type ParticleTypesModifier and TypeMethodDescriptionParticleCatalog.Builder.complex(ParticleTypes particleType, float probability, ParticleData data) Adds a complex particle to the catalog.static AmbientParticleAmbientParticle.of(ParticleTypes ambientParticle, float probability) Creates a new AmbientParticle instance with no particle data.static AmbientParticleAmbientParticle.of(ParticleTypes ambientParticle, float probability, @Nullable ParticleData particleData) Creates a new AmbientParticle instance.static ParticleOptionsParticleOptions.of(ParticleTypes type) Creates a new ParticleOptions instance.static ParticleOptionsParticleOptions.of(ParticleTypes type, @Nullable ParticleData data) Creates a new ParticleOptions instance.static ParticleCatalogParticleCatalog.ofComplex(ParticleTypes particleType, float probability, ParticleData data) Creates a ParticleCatalog with a single complex particle.static ParticleCatalogParticleCatalog.ofSimple(ParticleTypes particleType, float probability) Creates a ParticleCatalog with a single complex particle.ParticleCatalog.Builder.particle(ParticleTypes particleType, float probability) Adds a particle to the catalog.ParticleCatalog.Builder.particle(ParticleTypes particleType, float probability, @Nullable ParticleData data) Adds a particle to the catalog.ParticleCatalog.Builder.simple(ParticleTypes particleType, float probability) Adds a simple particle to the catalog.AmbientParticle.Builder.type(ParticleTypes type) Sets the particle type.ParticleCatalog.with(ParticleTypes type, float probability) Creates a new ParticleCatalog with the specified particle added.<T extends ParticleData>
ParticleCatalogParticleCatalog.with(ParticleTypes type, float probability, @Nullable T data) Creates a new ParticleCatalog with the specified particle added.