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
official eek$b
intermediary net/minecraft/class_4720$class_6189
named net/minecraft/client/render/VertexConsumers$Union
  • Field Details

    • delegates

      private final VertexConsumer[] delegates
      Mappings:
      Namespace Name Mixin selector
      official a Leek$b;a:[Leeh;
      intermediary field_32053 Lnet/minecraft/class_4720$class_6189;field_32053:[Lnet/minecraft/class_4588;
      named delegates Lnet/minecraft/client/render/VertexConsumers$Union;delegates:[Lnet/minecraft/client/render/VertexConsumer;
  • Constructor Details

    • Union

      public Union(VertexConsumer[] delegates)
      Mappings:
      Namespace Name Mixin selector
      official <init> Leek$b;<init>([Leeh;)V
      intermediary <init> Lnet/minecraft/class_4720$class_6189;<init>([Lnet/minecraft/class_4588;)V
      named <init> Lnet/minecraft/client/render/VertexConsumers$Union;<init>([Lnet/minecraft/client/render/VertexConsumer;)V
  • Method Details

    • delegate

      private void delegate(Consumer<VertexConsumer> action)
      Mappings:
      Namespace Name Mixin selector
      official a Leek$b;a(Ljava/util/function/Consumer;)V
      intermediary method_35677 Lnet/minecraft/class_4720$class_6189;method_35677(Ljava/util/function/Consumer;)V
      named delegate Lnet/minecraft/client/render/VertexConsumers$Union;delegate(Ljava/util/function/Consumer;)V
    • vertex

      public VertexConsumer vertex(double x, double y, double z)
      Specifies the position element of the current vertex.

      This is typically the first element in a vertex, hence the name.

      Specified by:
      vertex in interface VertexConsumer
      Returns:
      this consumer, for chaining
      Mappings:
      Namespace Name Mixin selector
      official a Leeh;a(DDD)Leeh;
      intermediary method_22912 Lnet/minecraft/class_4588;method_22912(DDD)Lnet/minecraft/class_4588;
      named vertex Lnet/minecraft/client/render/VertexConsumer;vertex(DDD)Lnet/minecraft/client/render/VertexConsumer;
    • color

      public VertexConsumer color(int red, int green, int blue, int alpha)
      Specifies the color element of the current vertex.
      Specified by:
      color in interface VertexConsumer
      Returns:
      this consumer, for chaining
      Mappings:
      Namespace Name Mixin selector
      official a Leeh;a(IIII)Leeh;
      intermediary method_1336 Lnet/minecraft/class_4588;method_1336(IIII)Lnet/minecraft/class_4588;
      named color Lnet/minecraft/client/render/VertexConsumer;color(IIII)Lnet/minecraft/client/render/VertexConsumer;
    • texture

      public VertexConsumer texture(float u, float v)
      Specifies the texture element of the current vertex.
      Specified by:
      texture in interface VertexConsumer
      Returns:
      this consumer, for chaining
      Mappings:
      Namespace Name Mixin selector
      official a Leeh;a(FF)Leeh;
      intermediary method_22913 Lnet/minecraft/class_4588;method_22913(FF)Lnet/minecraft/class_4588;
      named texture Lnet/minecraft/client/render/VertexConsumer;texture(FF)Lnet/minecraft/client/render/VertexConsumer;
    • overlay

      public VertexConsumer overlay(int u, int v)
      Specifies the overlay element of the current vertex.
      Specified by:
      overlay in interface VertexConsumer
      Returns:
      this consumer, for chaining
      Mappings:
      Namespace Name Mixin selector
      official a Leeh;a(II)Leeh;
      intermediary method_22917 Lnet/minecraft/class_4588;method_22917(II)Lnet/minecraft/class_4588;
      named overlay Lnet/minecraft/client/render/VertexConsumer;overlay(II)Lnet/minecraft/client/render/VertexConsumer;
    • light

      public VertexConsumer light(int u, int v)
      Specifies the light element of the current vertex.
      Specified by:
      light in interface VertexConsumer
      Returns:
      this consumer, for chaining
      Mappings:
      Namespace Name Mixin selector
      official b Leeh;b(II)Leeh;
      intermediary method_22921 Lnet/minecraft/class_4588;method_22921(II)Lnet/minecraft/class_4588;
      named light Lnet/minecraft/client/render/VertexConsumer;light(II)Lnet/minecraft/client/render/VertexConsumer;
    • normal

      public VertexConsumer normal(float x, float y, float z)
      Specifies the normal element of the current vertex.
      Specified by:
      normal in interface VertexConsumer
      Returns:
      this consumer, for chaining
      Mappings:
      Namespace Name Mixin selector
      official b Leeh;b(FFF)Leeh;
      intermediary method_22914 Lnet/minecraft/class_4588;method_22914(FFF)Lnet/minecraft/class_4588;
      named normal Lnet/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:
      vertex in interface VertexConsumer
      Mappings:
      Namespace Name Mixin selector
      official a Leeh;a(FFFFFFFFFIIFFF)V
      intermediary method_23919 Lnet/minecraft/class_4588;method_23919(FFFFFFFFFIIFFF)V
      named vertex Lnet/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:
      next in interface VertexConsumer
      Mappings:
      Namespace Name Mixin selector
      official e Leeh;e()V
      intermediary method_1344 Lnet/minecraft/class_4588;method_1344()V
      named next Lnet/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 until VertexConsumer.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:
      fixedColor in interface VertexConsumer
      Mappings:
      Namespace Name Mixin selector
      official b Leeh;b(IIII)V
      intermediary method_22901 Lnet/minecraft/class_4588;method_22901(IIII)V
      named fixedColor Lnet/minecraft/client/render/VertexConsumer;fixedColor(IIII)V
    • unfixColor

      public void unfixColor()
      Makes this consumer no longer use the color set in VertexConsumer.fixedColor(int, int, int, int).
      Specified by:
      unfixColor in interface VertexConsumer
      Mappings:
      Namespace Name Mixin selector
      official k Leeh;k()V
      intermediary method_35666 Lnet/minecraft/class_4588;method_35666()V
      named unfixColor Lnet/minecraft/client/render/VertexConsumer;unfixColor()V