Package net.minecraft.client.particle
Record Class SculkChargePopParticle.Factory
java.lang.Object
java.lang.Record
net.minecraft.client.particle.SculkChargePopParticle.Factory
- Record Components:
spriteProvider
-
- All Implemented Interfaces:
ParticleFactory<SimpleParticleType>
- Enclosing class:
SculkChargePopParticle
@Environment(CLIENT)
public static record SculkChargePopParticle.Factory(SpriteProvider spriteProvider)
extends Record
implements ParticleFactory<SimpleParticleType>
- Mappings:
Namespace Name named net/minecraft/client/particle/SculkChargePopParticle$Factory
intermediary net/minecraft/class_7208$class_7209
official gbo$a
named spriteProvider
intermediary comp_621
official a
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.client.particle.ParticleFactory
ParticleFactory.BlockLeakParticleFactory<T extends ParticleEffect>
-
Field Summary
Modifier and TypeFieldDescriptionprivate final SpriteProvider
The field for thespriteProvider
record component. -
Constructor Summary
ConstructorDescriptionFactory
(SpriteProvider spriteProvider) Creates an instance of aFactory
record class. -
Method Summary
Modifier and TypeMethodDescriptioncreateParticle
(SimpleParticleType simpleParticleType, ClientWorld clientWorld, double double2, double double3, double double4, double double5, double double6, double double7) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thespriteProvider
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
spriteProvider
The field for thespriteProvider
record component.
-
-
Constructor Details
-
Factory
Creates an instance of aFactory
record class.- Parameters:
spriteProvider
- the value for thespriteProvider
record component
-
-
Method Details
-
createParticle
public Particle createParticle(SimpleParticleType simpleParticleType, ClientWorld clientWorld, double double2, double double3, double double4, double double5, double double6, double double7) - Specified by:
createParticle
in interfaceParticleFactory<SimpleParticleType>
- Mappings:
Namespace Name Mixin selector named createParticle
Lnet/minecraft/client/particle/SculkChargePopParticle$Factory;createParticle(Lnet/minecraft/particle/SimpleParticleType;Lnet/minecraft/client/world/ClientWorld;DDDDDD)Lnet/minecraft/client/particle/Particle;
intermediary method_41947
Lnet/minecraft/class_7208$class_7209;method_41947(Lnet/minecraft/class_2400;Lnet/minecraft/class_638;DDDDDD)Lnet/minecraft/class_703;
official a
Lgbo$a;a(Llm;Lfxx;DDDDDD)Lgbe;
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
spriteProvider
Returns the value of thespriteProvider
record component.- Returns:
- the value of the
spriteProvider
record component
-