Package net.minecraft.client.render
Interface VertexConsumer
- All Known Subinterfaces:
BufferVertexConsumer
- All Known Implementing Classes:
BufferBuilder,FixedColorVertexConsumer,OutlineVertexConsumerProvider.OutlineVertexConsumer,OverlayVertexConsumer,SpriteTexturedVertexConsumer,VertexConsumers.Dual,VertexConsumers.Union
An interface that consumes vertices in a certain vertex format.
The vertex elements must be specified in the same order as defined in the format the vertices being consumed are in.
- Mappings:
Namespace Name named net/minecraft/client/render/VertexConsumerintermediary net/minecraft/class_4588official fae
-
Method Summary
Modifier and TypeMethodDescriptiondefault VertexConsumercolor(float red, float green, float blue, float alpha) Specifies the color element of the current vertex.default VertexConsumercolor(int argb) Specifies the color element of the current vertex.color(int red, int green, int blue, int alpha) Specifies the color element of the current vertex.voidfixedColor(int red, int green, int blue, int alpha) Makes this consumer always use the same color for subsequent vertices untilunfixColor()is called.default VertexConsumerlight(int uv) Specifies the light element of the current vertex.light(int u, int v) Specifies the light element of the current vertex.voidnext()Starts consuming the next vertex.normal(float x, float y, float z) Specifies the normal element of the current vertex.default VertexConsumernormal(MatrixStack.Entry matrix, float x, float y, float z) Specifies the normal element of the current vertex.default VertexConsumeroverlay(int uv) Specifies the overlay element of the current vertex.overlay(int u, int v) Specifies the overlay element of the current vertex.default voidquad(MatrixStack.Entry matrixEntry, BakedQuad quad, float[] brightnesses, float red, float green, float blue, float float2, int[] int2, int int3, boolean bool) Specifies the vertex elements fromquadand starts consuming the next vertex.default voidquad(MatrixStack.Entry matrixEntry, BakedQuad quad, float red, float green, float blue, float float2, int int2, int int3) Specifies the vertex elements fromquadand starts consuming the next vertex.texture(float u, float v) Specifies the texture element of the current vertex.voidMakes this consumer no longer use the color set infixedColor(int, int, int, int).vertex(double x, double y, double z) Specifies the position element of the current vertex.default voidvertex(float x, float y, float z, float red, float green, float blue, float alpha, float u, float v, int overlay, int light, float normalX, float normalY, float normalZ) default VertexConsumervertex(MatrixStack.Entry matrix, float x, float y, float z) default VertexConsumerSpecifies the position element of the current vertex.
-
Method Details
-
vertex
Specifies the position element of the current vertex.This is typically the first element in a vertex, hence the name.
- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a position element.- Mappings:
Namespace Name Mixin selector named vertexLnet/minecraft/client/render/VertexConsumer;vertex(DDD)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22912Lnet/minecraft/class_4588;method_22912(DDD)Lnet/minecraft/class_4588;official aLfae;a(DDD)Lfae;
-
color
Specifies the color element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a color element or if a color has been set infixedColor(int, int, int, int).- Mappings:
Namespace Name Mixin selector named colorLnet/minecraft/client/render/VertexConsumer;color(IIII)Lnet/minecraft/client/render/VertexConsumer;intermediary method_1336Lnet/minecraft/class_4588;method_1336(IIII)Lnet/minecraft/class_4588;official aLfae;a(IIII)Lfae;
-
texture
Specifies the texture element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a texture element.- Mappings:
Namespace Name Mixin selector named textureLnet/minecraft/client/render/VertexConsumer;texture(FF)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22913Lnet/minecraft/class_4588;method_22913(FF)Lnet/minecraft/class_4588;official aLfae;a(FF)Lfae;
-
overlay
Specifies the overlay element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting an overlay element.- Mappings:
Namespace Name Mixin selector named overlayLnet/minecraft/client/render/VertexConsumer;overlay(II)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22917Lnet/minecraft/class_4588;method_22917(II)Lnet/minecraft/class_4588;official aLfae;a(II)Lfae;
-
light
Specifies the light element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a light element.- Mappings:
Namespace Name Mixin selector named lightLnet/minecraft/client/render/VertexConsumer;light(II)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22921Lnet/minecraft/class_4588;method_22921(II)Lnet/minecraft/class_4588;official bLfae;b(II)Lfae;
-
normal
Specifies the normal element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a normal element.- Mappings:
Namespace Name Mixin selector named normalLnet/minecraft/client/render/VertexConsumer;normal(FFF)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22914Lnet/minecraft/class_4588;method_22914(FFF)Lnet/minecraft/class_4588;official aLfae;a(FFF)Lfae;
-
next
void next()Starts consuming the next vertex.This method must be called after specifying all elements in a vertex.
- Mappings:
Namespace Name Mixin selector named nextLnet/minecraft/client/render/VertexConsumer;next()Vintermediary method_1344Lnet/minecraft/class_4588;method_1344()Vofficial eLfae;e()V
-
vertex
default void vertex(float x, float y, float z, float red, float green, float blue, float alpha, float u, float v, int overlay, int light, float normalX, float normalY, float normalZ) Specifies the position, color, texture, overlay, light, and normal elements of the current vertex and starts consuming the next vertex.- Throws:
IllegalStateException- if a color has been set infixedColor(int, int, int, int).- Mappings:
Namespace Name Mixin selector named vertexLnet/minecraft/client/render/VertexConsumer;vertex(FFFFFFFFFIIFFF)Vintermediary method_23919Lnet/minecraft/class_4588;method_23919(FFFFFFFFFIIFFF)Vofficial aLfae;a(FFFFFFFFFIIFFF)V
-
fixedColor
void fixedColor(int red, int green, int blue, int alpha) Makes this consumer always use the same color for subsequent vertices untilunfixColor()is called.The color will be automatically supplied when the color element is requested. Make sure not to specify the color yourself when using this method.
- Mappings:
Namespace Name Mixin selector named fixedColorLnet/minecraft/client/render/VertexConsumer;fixedColor(IIII)Vintermediary method_22901Lnet/minecraft/class_4588;method_22901(IIII)Vofficial bLfae;b(IIII)V
-
unfixColor
void unfixColor()Makes this consumer no longer use the color set infixedColor(int, int, int, int).- Mappings:
Namespace Name Mixin selector named unfixColorLnet/minecraft/client/render/VertexConsumer;unfixColor()Vintermediary method_35666Lnet/minecraft/class_4588;method_35666()Vofficial lLfae;l()V
-
color
Specifies the color element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a color element or if a color has been set infixedColor(int, int, int, int).- Mappings:
Namespace Name Mixin selector named colorLnet/minecraft/client/render/VertexConsumer;color(FFFF)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22915Lnet/minecraft/class_4588;method_22915(FFFF)Lnet/minecraft/class_4588;official aLfae;a(FFFF)Lfae;
-
color
Specifies the color element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a color element or if a color has been set infixedColor(int, int, int, int).- Mappings:
Namespace Name Mixin selector named colorLnet/minecraft/client/render/VertexConsumer;color(I)Lnet/minecraft/client/render/VertexConsumer;intermediary method_39415Lnet/minecraft/class_4588;method_39415(I)Lnet/minecraft/class_4588;official aLfae;a(I)Lfae;
-
light
Specifies the light element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a light element.- Mappings:
Namespace Name Mixin selector named lightLnet/minecraft/client/render/VertexConsumer;light(I)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22916Lnet/minecraft/class_4588;method_22916(I)Lnet/minecraft/class_4588;official bLfae;b(I)Lfae;
-
overlay
Specifies the overlay element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting an overlay element.- Mappings:
Namespace Name Mixin selector named overlayLnet/minecraft/client/render/VertexConsumer;overlay(I)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22922Lnet/minecraft/class_4588;method_22922(I)Lnet/minecraft/class_4588;official cLfae;c(I)Lfae;
-
quad
default void quad(MatrixStack.Entry matrixEntry, BakedQuad quad, float red, float green, float blue, float float2, int int2, int int3) Specifies the vertex elements fromquadand starts consuming the next vertex.- Throws:
IllegalStateException- if a color has been set infixedColor(int, int, int, int).- Mappings:
Namespace Name Mixin selector named quadLnet/minecraft/client/render/VertexConsumer;quad(Lnet/minecraft/client/util/math/MatrixStack$Entry;Lnet/minecraft/client/render/model/BakedQuad;FFFFII)Vintermediary method_22919Lnet/minecraft/class_4588;method_22919(Lnet/minecraft/class_4587$class_4665;Lnet/minecraft/class_777;FFFFII)Vofficial aLfae;a(Lfaa$a;Lgen;FFFFII)V
-
quad
default void quad(MatrixStack.Entry matrixEntry, BakedQuad quad, float[] brightnesses, float red, float green, float blue, float float2, int[] int2, int int3, boolean bool) Specifies the vertex elements fromquadand starts consuming the next vertex.- Throws:
IllegalStateException- if a color has been set infixedColor(int, int, int, int).- Mappings:
Namespace Name Mixin selector named quadLnet/minecraft/client/render/VertexConsumer;quad(Lnet/minecraft/client/util/math/MatrixStack$Entry;Lnet/minecraft/client/render/model/BakedQuad;[FFFFF[IIZ)Vintermediary method_22920Lnet/minecraft/class_4588;method_22920(Lnet/minecraft/class_4587$class_4665;Lnet/minecraft/class_777;[FFFFF[IIZ)Vofficial aLfae;a(Lfaa$a;Lgen;[FFFFF[IIZ)V
-
vertex
- Mappings:
Namespace Name Mixin selector named vertexLnet/minecraft/client/render/VertexConsumer;vertex(Lnet/minecraft/client/util/math/MatrixStack$Entry;FFF)Lnet/minecraft/client/render/VertexConsumer;intermediary method_56824Lnet/minecraft/class_4588;method_56824(Lnet/minecraft/class_4587$class_4665;FFF)Lnet/minecraft/class_4588;official aLfae;a(Lfaa$a;FFF)Lfae;
-
vertex
Specifies the position element of the current vertex.- Parameters:
matrix- the matrix that will be applied to the vertex position, typicallyMatrixStack.Entry#getPositionMatrix- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a position element.- Mappings:
Namespace Name Mixin selector named vertexLnet/minecraft/client/render/VertexConsumer;vertex(Lorg/joml/Matrix4f;FFF)Lnet/minecraft/client/render/VertexConsumer;intermediary method_22918Lnet/minecraft/class_4588;method_22918(Lorg/joml/Matrix4f;FFF)Lnet/minecraft/class_4588;official aLfae;a(Lorg/joml/Matrix4f;FFF)Lfae;
-
normal
Specifies the normal element of the current vertex.- Returns:
- this consumer, for chaining
- Throws:
IllegalStateException- if this consumer is not currently accepting a normal element.- Mappings:
Namespace Name Mixin selector named normalLnet/minecraft/client/render/VertexConsumer;normal(Lnet/minecraft/client/util/math/MatrixStack$Entry;FFF)Lnet/minecraft/client/render/VertexConsumer;intermediary method_23763Lnet/minecraft/class_4588;method_23763(Lnet/minecraft/class_4587$class_4665;FFF)Lnet/minecraft/class_4588;official bLfae;b(Lfaa$a;FFF)Lfae;
-