Package net.minecraft.client.particle
Record Class SculkChargeParticle.Factory
java.lang.Object
java.lang.Record
net.minecraft.client.particle.SculkChargeParticle.Factory
- Record Components:
- spriteProvider-
- All Implemented Interfaces:
- ParticleFactory<SculkChargeParticleEffect>
- Enclosing class:
- SculkChargeParticle
@Environment(CLIENT)
public static record SculkChargeParticle.Factory(SpriteProvider spriteProvider)
extends Record
implements ParticleFactory<SculkChargeParticleEffect>
- Mappings:
- Namespace - Name - official - ext$a- intermediary - net/minecraft/class_7206$class_7207- named - net/minecraft/client/particle/SculkChargeParticle$Factory- official - a- intermediary - comp_620- named - spriteProvider
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final SpriteProviderThe field for thespriteProviderrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionFactory(SpriteProvider spriteProvider) Creates an instance of aFactoryrecord class.
- 
Method SummaryModifier and TypeMethodDescriptioncreateParticle(SculkChargeParticleEffect sculkChargeParticleEffect, ClientWorld clientWorld, double double2, double double3, double double4, double double5, double double6, double double7) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thespriteProviderrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
spriteProviderThe field for thespriteProviderrecord component.
 
- 
- 
Constructor Details- 
FactoryCreates an instance of aFactoryrecord class.- Parameters:
- spriteProvider- the value for the- spriteProviderrecord component
 
 
- 
- 
Method Details- 
createParticlepublic Particle createParticle(SculkChargeParticleEffect sculkChargeParticleEffect, ClientWorld clientWorld, double double2, double double3, double double4, double double5, double double6, double double7) - Specified by:
- createParticlein interface- ParticleFactory<SculkChargeParticleEffect>
- Mappings:
- Namespace - Name - Mixin selector - official - a- Lext$a;a(Lip;Leuv;DDDDDD)Lexk;- intermediary - method_41946- Lnet/minecraft/class_7206$class_7207;method_41946(Lnet/minecraft/class_7227;Lnet/minecraft/class_638;DDDDDD)Lnet/minecraft/class_703;- named - createParticle- Lnet/minecraft/client/particle/SculkChargeParticle$Factory;createParticle(Lnet/minecraft/particle/SculkChargeParticleEffect;Lnet/minecraft/client/world/ClientWorld;DDDDDD)Lnet/minecraft/client/particle/Particle;
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
spriteProviderReturns the value of thespriteProviderrecord component.- Returns:
- the value of the spriteProviderrecord component
 
 
-