Package net.minecraft.client.particle
Class EnchantGlyphParticle
java.lang.Object
net.minecraft.client.particle.Particle
net.minecraft.client.particle.BillboardParticle
net.minecraft.client.particle.SpriteBillboardParticle
net.minecraft.client.particle.EnchantGlyphParticle
- Mappings:
Namespace Name official ftrintermediary net/minecraft/class_668named net/minecraft/client/particle/EnchantGlyphParticle
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic classNested classes/interfaces inherited from class net.minecraft.client.particle.BillboardParticle
BillboardParticle.RotatorNested classes/interfaces inherited from class net.minecraft.client.particle.Particle
Particle.class_9213 -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanprivate final Particle.class_9213private 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, ascending, blue, collidesWithWorld, dead, gravityStrength, green, maxAge, onGround, prevAngle, prevPosX, prevPosY, prevPosZ, random, red, spacingXZ, spacingY, velocityMultiplier, velocityX, velocityY, velocityZ, world, x, y, z -
Constructor Summary
ConstructorsConstructorDescriptionEnchantGlyphParticle(ClientWorld world, double x, double y, double z, double velocityX, double velocityY, double velocityZ) EnchantGlyphParticle(ClientWorld clientWorld, double double2, double double3, double double4, double double5, double double6, double double7, boolean bool, Particle.class_9213 class_9213) -
Method Summary
Modifier and TypeMethodDescriptionvoidbuildGeometry(VertexConsumer vertexConsumer, Camera camera, float tickDelta) Renders this particle to the givenVertexConsumerbuffer.intgetBrightness(float tint) Returns the packed light level this particle should render at.getType()Returns the rendering category this particle is rendered under.voidmove(double dx, double dy, double dz) Moves this particle by the specified delta amounts, re-positioning bounding boxes and adjusting movement for collision with the world.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
getRotator, getSize, 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 aLftr;a:Dintermediary field_3795Lnet/minecraft/class_668;field_3795:Dnamed startXLnet/minecraft/client/particle/EnchantGlyphParticle;startX:D
-
startY
private final double startY- Mappings:
Namespace Name Mixin selector official bLftr;b:Dintermediary field_3794Lnet/minecraft/class_668;field_3794:Dnamed startYLnet/minecraft/client/particle/EnchantGlyphParticle;startY:D
-
startZ
private final double startZ- Mappings:
Namespace Name Mixin selector official FLftr;F:Dintermediary field_3793Lnet/minecraft/class_668;field_3793:Dnamed startZLnet/minecraft/client/particle/EnchantGlyphParticle;startZ:D
-
field_48938
private final boolean field_48938- Mappings:
Namespace Name Mixin selector official GLftr;G:Zintermediary field_48938Lnet/minecraft/class_668;field_48938:Znamed field_48938Lnet/minecraft/client/particle/EnchantGlyphParticle;field_48938:Z
-
field_48939
- Mappings:
Namespace Name Mixin selector official HLftr;H:Lfue$a;intermediary field_48939Lnet/minecraft/class_668;field_48939:Lnet/minecraft/class_703$class_9213;named field_48939Lnet/minecraft/client/particle/EnchantGlyphParticle;field_48939:Lnet/minecraft/client/particle/Particle$class_9213;
-
-
Constructor Details
-
EnchantGlyphParticle
EnchantGlyphParticle(ClientWorld world, double x, double y, double z, double velocityX, double velocityY, double velocityZ) - Mappings:
Namespace Name Mixin selector official <init>Lfue;<init>(Lfra;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
-
EnchantGlyphParticle
EnchantGlyphParticle(ClientWorld clientWorld, double double2, double double3, double double4, double double5, double double6, double double7, boolean bool, Particle.class_9213 class_9213)
-
-
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 official bLfue;b()Lfui;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 this particle by 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 aLfue;a(DDD)Vintermediary method_3069Lnet/minecraft/class_703;method_3069(DDD)Vnamed moveLnet/minecraft/client/particle/Particle;move(DDD)V
-
getBrightness
public int getBrightness(float tint) Returns the packed light level this particle should render at.- Overrides:
getBrightnessin classParticle- Returns:
- the packed light level this particle should render at
- See Also:
- Mappings:
Namespace Name Mixin selector official aLfue;a(F)Iintermediary method_3068Lnet/minecraft/class_703;method_3068(F)Inamed getBrightnessLnet/minecraft/client/particle/Particle;getBrightness(F)I
-
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. -
buildGeometry
Renders this particle to the givenVertexConsumerbuffer.- Overrides:
buildGeometryin classBillboardParticle- Parameters:
vertexConsumer- the buffer to render tocamera- the current active gameCameratickDelta- frame tick delta amount- Mappings:
Namespace Name Mixin selector official aLfue;a(Leth;Lexv;F)Vintermediary method_3074Lnet/minecraft/class_703;method_3074(Lnet/minecraft/class_4588;Lnet/minecraft/class_4184;F)Vnamed buildGeometryLnet/minecraft/client/particle/Particle;buildGeometry(Lnet/minecraft/client/render/VertexConsumer;Lnet/minecraft/client/render/Camera;F)V
-