Package net.minecraft.client.particle
Class PortalParticle
java.lang.Object
net.minecraft.client.particle.Particle
net.minecraft.client.particle.BillboardParticle
net.minecraft.client.particle.SpriteBillboardParticle
net.minecraft.client.particle.PortalParticle
- Direct Known Subclasses:
ReversePortalParticle
- Mappings:
Namespace Name official faeintermediary net/minecraft/class_709named net/minecraft/client/particle/PortalParticle
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final doubleprivate final doubleprivate final doubleFields 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
ConstructorsModifierConstructorDescriptionprotectedPortalParticle(ClientWorld world, double x, double y, double z, double velocityX, double velocityY, double velocityZ) -
Method Summary
Modifier and TypeMethodDescriptionintgetBrightness(float tint) floatgetSize(float tickDelta) getType()Returns the rendering category thisParticleis rendered under.voidmove(double dx, double dy, double dz) Moves thisParticleby the specified delta amounts, re-positioning bounding boxes and adjusting movement for collision with the world.voidtick()This method is called each game tick (20 times per second), and should be used to do coreParticlelogic, 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, getGroup, getMaxAge, isAlive, markDead, move, repositionFromBoundingBox, setAlpha, setBoundingBox, setBoundingBoxSpacing, setColor, setMaxAge, setPos, setVelocity, toString
-
Field Details
-
startX
private final double startX- Mappings:
Namespace Name Mixin selector official aLfae;a:Dintermediary field_3886Lnet/minecraft/class_709;field_3886:Dnamed startXLnet/minecraft/client/particle/PortalParticle;startX:D
-
startY
private final double startY- Mappings:
Namespace Name Mixin selector official bLfae;b:Dintermediary field_3885Lnet/minecraft/class_709;field_3885:Dnamed startYLnet/minecraft/client/particle/PortalParticle;startY:D
-
startZ
private final double startZ- Mappings:
Namespace Name Mixin selector official FLfae;F:Dintermediary field_3884Lnet/minecraft/class_709;field_3884:Dnamed startZLnet/minecraft/client/particle/PortalParticle;startZ:D
-
-
Constructor Details
-
PortalParticle
protected PortalParticle(ClientWorld world, double x, double y, double z, double velocityX, double velocityY, double velocityZ) - Mappings:
Namespace Name Mixin selector official <init>Lezy;<init>(Lexk;DDDDDD)Vintermediary <init>Lnet/minecraft/class_703;<init>(Lnet/minecraft/class_638;DDDDDD)Vnamed <init>Lnet/minecraft/client/particle/Particle;<init>(Lnet/minecraft/client/world/ClientWorld;DDDDDD)V
-
-
Method Details
-
getType
Returns the rendering category thisParticleis rendered under.For more information on the properties and types available to each
Particle, visitParticleTextureSheet.- Specified by:
getTypein classParticle- Returns:
- the
ParticleTextureSheetanyParticleof this type will render through - Mappings:
Namespace Name Mixin selector official bLezy;b()Lfac;intermediary method_18122Lnet/minecraft/class_703;method_18122()Lnet/minecraft/class_3999;named getTypeLnet/minecraft/client/particle/Particle;getType()Lnet/minecraft/client/particle/ParticleTextureSheet;
-
move
public void move(double dx, double dy, double dz) Moves thisParticleby the specified delta amounts, re-positioning bounding boxes and adjusting movement for collision with the world.- Overrides:
movein classParticle- Parameters:
dx- the delta x to move this particle bydy- the delta y to move this particle bydz- the delta z to move this particle by- Mappings:
Namespace Name Mixin selector official aLezy;a(DDD)Vintermediary method_3069Lnet/minecraft/class_703;method_3069(DDD)Vnamed moveLnet/minecraft/client/particle/Particle;move(DDD)V
-
getSize
public float getSize(float tickDelta) - 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 official bLfal;b(F)Fintermediary method_18132Lnet/minecraft/class_3940;method_18132(F)Fnamed getSizeLnet/minecraft/client/particle/BillboardParticle;getSize(F)F
-
getBrightness
public int getBrightness(float tint) - Overrides:
getBrightnessin classParticle- Returns:
- the packed light level this particle should render at
- See Also:
- Mappings:
Namespace Name Mixin selector official aLezy;a(F)Iintermediary method_3068Lnet/minecraft/class_703;method_3068(F)Inamed getBrightnessLnet/minecraft/client/particle/Particle;getBrightness(F)I
-
tick
public void tick()This method is called each game tick (20 times per second), and should be used to do coreParticlelogic, such as movement and collision.
-