Package net.minecraft.client.render
Class VertexConsumers.Union
java.lang.Object
net.minecraft.client.render.VertexConsumers.Union
- All Implemented Interfaces:
VertexConsumer
- Enclosing class:
VertexConsumers
@Environment(CLIENT)
private static class VertexConsumers.Union
extends Object
implements VertexConsumer
- Mappings:
Namespace Name intermediary net/minecraft/class_4720$class_6189official eii$bnamed net/minecraft/client/render/VertexConsumers$Union
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncolor(int red, int green, int blue, int alpha) Specifies the color element of the current vertex.private voiddelegate(Consumer<VertexConsumer> action) voidfixedColor(int red, int green, int blue, int alpha) Makes this consumer always use the same color for subsequent vertices untilVertexConsumer.unfixColor()is called.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.overlay(int u, int v) Specifies the overlay element of the current vertex.texture(float u, float v) Specifies the texture element of the current vertex.voidMakes this consumer no longer use the color set inVertexConsumer.fixedColor(int, int, int, int).vertex(double x, double y, double z) Specifies the position element of the current vertex.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)
-
Field Details
-
delegates
- Mappings:
Namespace Name Mixin selector intermediary field_32053Lnet/minecraft/class_4720$class_6189;field_32053:[Lnet/minecraft/class_4588;official aLeii$b;a:[Leif;named delegatesLnet/minecraft/client/render/VertexConsumers$Union;delegates:[Lnet/minecraft/client/render/VertexConsumer;
-
-
Constructor Details
-
Union
- Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_4720$class_6189;<init>([Lnet/minecraft/class_4588;)Vofficial <init>Leii$b;<init>([Leif;)Vnamed <init>Lnet/minecraft/client/render/VertexConsumers$Union;<init>([Lnet/minecraft/client/render/VertexConsumer;)V
-
-
Method Details
-
delegate
- Mappings:
Namespace Name Mixin selector intermediary method_35677Lnet/minecraft/class_4720$class_6189;method_35677(Ljava/util/function/Consumer;)Vofficial aLeii$b;a(Ljava/util/function/Consumer;)Vnamed delegateLnet/minecraft/client/render/VertexConsumers$Union;delegate(Ljava/util/function/Consumer;)V
-
vertex
Specifies the position element of the current vertex.This is typically the first element in a vertex, hence the name.
- Specified by:
vertexin interfaceVertexConsumer- Returns:
- this consumer, for chaining
- Mappings:
Namespace Name Mixin selector intermediary method_22912Lnet/minecraft/class_4588;method_22912(DDD)Lnet/minecraft/class_4588;official aLeif;a(DDD)Leif;named vertexLnet/minecraft/client/render/VertexConsumer;vertex(DDD)Lnet/minecraft/client/render/VertexConsumer;
-
color
Specifies the color element of the current vertex.- Specified by:
colorin interfaceVertexConsumer- Returns:
- this consumer, for chaining
- Mappings:
Namespace Name Mixin selector intermediary method_1336Lnet/minecraft/class_4588;method_1336(IIII)Lnet/minecraft/class_4588;official aLeif;a(IIII)Leif;named colorLnet/minecraft/client/render/VertexConsumer;color(IIII)Lnet/minecraft/client/render/VertexConsumer;
-
texture
Specifies the texture element of the current vertex.- Specified by:
texturein interfaceVertexConsumer- Returns:
- this consumer, for chaining
- Mappings:
Namespace Name Mixin selector intermediary method_22913Lnet/minecraft/class_4588;method_22913(FF)Lnet/minecraft/class_4588;official aLeif;a(FF)Leif;named textureLnet/minecraft/client/render/VertexConsumer;texture(FF)Lnet/minecraft/client/render/VertexConsumer;
-
overlay
Specifies the overlay element of the current vertex.- Specified by:
overlayin interfaceVertexConsumer- Returns:
- this consumer, for chaining
- Mappings:
Namespace Name Mixin selector intermediary method_22917Lnet/minecraft/class_4588;method_22917(II)Lnet/minecraft/class_4588;official aLeif;a(II)Leif;named overlayLnet/minecraft/client/render/VertexConsumer;overlay(II)Lnet/minecraft/client/render/VertexConsumer;
-
light
Specifies the light element of the current vertex.- Specified by:
lightin interfaceVertexConsumer- Returns:
- this consumer, for chaining
- Mappings:
Namespace Name Mixin selector intermediary method_22921Lnet/minecraft/class_4588;method_22921(II)Lnet/minecraft/class_4588;official bLeif;b(II)Leif;named lightLnet/minecraft/client/render/VertexConsumer;light(II)Lnet/minecraft/client/render/VertexConsumer;
-
normal
Specifies the normal element of the current vertex.- Specified by:
normalin interfaceVertexConsumer- Returns:
- this consumer, for chaining
- Mappings:
Namespace Name Mixin selector intermediary method_22914Lnet/minecraft/class_4588;method_22914(FFF)Lnet/minecraft/class_4588;official aLeif;a(FFF)Leif;named normalLnet/minecraft/client/render/VertexConsumer;normal(FFF)Lnet/minecraft/client/render/VertexConsumer;
-
vertex
public 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.- Specified by:
vertexin interfaceVertexConsumer- Mappings:
Namespace Name Mixin selector intermediary method_23919Lnet/minecraft/class_4588;method_23919(FFFFFFFFFIIFFF)Vofficial aLeif;a(FFFFFFFFFIIFFF)Vnamed vertexLnet/minecraft/client/render/VertexConsumer;vertex(FFFFFFFFFIIFFF)V
-
next
public void next()Starts consuming the next vertex.This method must be called after specifying all elements in a vertex.
- Specified by:
nextin interfaceVertexConsumer- Mappings:
Namespace Name Mixin selector intermediary method_1344Lnet/minecraft/class_4588;method_1344()Vofficial eLeif;e()Vnamed nextLnet/minecraft/client/render/VertexConsumer;next()V
-
fixedColor
public void fixedColor(int red, int green, int blue, int alpha) Makes this consumer always use the same color for subsequent vertices untilVertexConsumer.unfixColor()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.
- Specified by:
fixedColorin interfaceVertexConsumer- Mappings:
Namespace Name Mixin selector intermediary method_22901Lnet/minecraft/class_4588;method_22901(IIII)Vofficial bLeif;b(IIII)Vnamed fixedColorLnet/minecraft/client/render/VertexConsumer;fixedColor(IIII)V
-
unfixColor
public void unfixColor()Makes this consumer no longer use the color set inVertexConsumer.fixedColor(int, int, int, int).- Specified by:
unfixColorin interfaceVertexConsumer- Mappings:
Namespace Name Mixin selector intermediary method_35666Lnet/minecraft/class_4588;method_35666()Vofficial kLeif;k()Vnamed unfixColorLnet/minecraft/client/render/VertexConsumer;unfixColor()V
-