Package net.minecraft.client.particle
Class BlockFallingDustParticle
java.lang.Object
net.minecraft.client.particle.Particle
net.minecraft.client.particle.BillboardParticle
net.minecraft.client.particle.SpriteBillboardParticle
net.minecraft.client.particle.BlockFallingDustParticle
- Mappings:
Namespace Name intermediary net/minecraft/class_682official fgonamed net/minecraft/client/particle/BlockFallingDustParticle
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsFields inherited from class net.minecraft.client.particle.SpriteBillboardParticle
spriteFields inherited from class net.minecraft.client.particle.BillboardParticle
scaleFields inherited from class net.minecraft.client.particle.Particle
age, alpha, angle, blue, collidesWithWorld, dead, field_28787, gravityStrength, green, maxAge, onGround, prevAngle, prevPosX, prevPosY, prevPosZ, random, red, spacingXZ, spacingY, velocityMultiplier, velocityX, velocityY, velocityZ, world, x, y, z -
Constructor Summary
ConstructorsConstructorDescriptionBlockFallingDustParticle(ClientWorld world, double x, double y, double z, float red, float green, float blue, SpriteProvider spriteProvider) -
Method Summary
Modifier and TypeMethodDescriptionfloatgetSize(float tickDelta) Returns the draw scale of this particle, which is used while rendering inBillboardParticle.buildGeometry(net.minecraft.client.render.VertexConsumer, net.minecraft.client.render.Camera, float).getType()Returns the rendering category this particle is rendered under.voidtick()Called each game tick (20 times per second), and should be used to do core particle logic, such as movement and collision.Methods inherited from class net.minecraft.client.particle.SpriteBillboardParticle
getMaxU, getMaxV, getMinU, getMinV, setSprite, setSprite, setSpriteForAgeMethods inherited from class net.minecraft.client.particle.BillboardParticle
buildGeometry, scaleMethods inherited from class net.minecraft.client.particle.Particle
getBoundingBox, getBrightness, getGroup, getMaxAge, isAlive, markDead, move, move, repositionFromBoundingBox, setAlpha, setBoundingBox, setBoundingBoxSpacing, setColor, setMaxAge, setPos, setVelocity, toString
-
Field Details
-
rotationSpeed
private final float rotationSpeed- Mappings:
Namespace Name Mixin selector intermediary field_3809Lnet/minecraft/class_682;field_3809:Fofficial aLfgo;a:Fnamed rotationSpeedLnet/minecraft/client/particle/BlockFallingDustParticle;rotationSpeed:F
-
spriteProvider
- Mappings:
Namespace Name Mixin selector intermediary field_17808Lnet/minecraft/class_682;field_17808:Lnet/minecraft/class_4002;official bLfgo;b:Lfhw;named spriteProviderLnet/minecraft/client/particle/BlockFallingDustParticle;spriteProvider:Lnet/minecraft/client/particle/SpriteProvider;
-
-
Constructor Details
-
BlockFallingDustParticle
BlockFallingDustParticle(ClientWorld world, double x, double y, double z, float red, float green, float blue, SpriteProvider spriteProvider) - Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_682;<init>(Lnet/minecraft/class_638;DDDFFFLnet/minecraft/class_4002;)Vofficial <init>Lfgo;<init>(Lfel;DDDFFFLfhw;)Vnamed <init>Lnet/minecraft/client/particle/BlockFallingDustParticle;<init>(Lnet/minecraft/client/world/ClientWorld;DDDFFFLnet/minecraft/client/particle/SpriteProvider;)V
-
-
Method Details
-
getType
Returns the rendering category this particle is rendered under.For more information on the properties and types available to each
Particle, visitParticleTextureSheet.- Specified by:
getTypein classParticle- Returns:
- the rendering category this particle is rendered under
- Mappings:
Namespace Name Mixin selector intermediary method_18122Lnet/minecraft/class_703;method_18122()Lnet/minecraft/class_3999;official bLfhb;b()Lfhf;named getTypeLnet/minecraft/client/particle/Particle;getType()Lnet/minecraft/client/particle/ParticleTextureSheet;
-
getSize
public float getSize(float tickDelta) Returns the draw scale of this particle, which is used while rendering inBillboardParticle.buildGeometry(net.minecraft.client.render.VertexConsumer, net.minecraft.client.render.Camera, float).- Overrides:
getSizein classBillboardParticle- Returns:
- the draw scale of this particle, which is used while rendering in
BillboardParticle.buildGeometry(net.minecraft.client.render.VertexConsumer, net.minecraft.client.render.Camera, float) - Mappings:
Namespace Name Mixin selector intermediary method_18132Lnet/minecraft/class_3940;method_18132(F)Fofficial bLfho;b(F)Fnamed getSizeLnet/minecraft/client/particle/BillboardParticle;getSize(F)F
-
tick
public void tick()Called each game tick (20 times per second), and should be used to do core particle logic, such as movement and collision.
-