Class OutlineVertexConsumerProvider.OutlineVertexConsumer

java.lang.Object
net.minecraft.client.render.FixedColorVertexConsumer
net.minecraft.client.render.OutlineVertexConsumerProvider.OutlineVertexConsumer
All Implemented Interfaces:
VertexConsumer
Enclosing class:
OutlineVertexConsumerProvider

@Environment(CLIENT) private static class OutlineVertexConsumerProvider.OutlineVertexConsumer extends FixedColorVertexConsumer
Mappings:
Namespace Name
named net/minecraft/client/render/OutlineVertexConsumerProvider$OutlineVertexConsumer
intermediary net/minecraft/class_4618$class_4586
official gdr$a
  • Field Details

    • delegate

      private final VertexConsumer delegate
      Mappings:
      Namespace Name Mixin selector
      named delegate Lnet/minecraft/client/render/OutlineVertexConsumerProvider$OutlineVertexConsumer;delegate:Lnet/minecraft/client/render/VertexConsumer;
      intermediary field_20897 Lnet/minecraft/class_4618$class_4586;field_20897:Lnet/minecraft/class_4588;
      official f Lgdr$a;f:Lfae;
    • x

      private double x
      Mappings:
      Namespace Name Mixin selector
      named x Lnet/minecraft/client/render/OutlineVertexConsumerProvider$OutlineVertexConsumer;x:D
      intermediary field_21064 Lnet/minecraft/class_4618$class_4586;field_21064:D
      official g Lgdr$a;g:D
    • y

      private double y
      Mappings:
      Namespace Name Mixin selector
      named y Lnet/minecraft/client/render/OutlineVertexConsumerProvider$OutlineVertexConsumer;y:D
      intermediary field_21065 Lnet/minecraft/class_4618$class_4586;field_21065:D
      official h Lgdr$a;h:D
    • z

      private double z
      Mappings:
      Namespace Name Mixin selector
      named z Lnet/minecraft/client/render/OutlineVertexConsumerProvider$OutlineVertexConsumer;z:D
      intermediary field_21066 Lnet/minecraft/class_4618$class_4586;field_21066:D
      official i Lgdr$a;i:D
    • textureU

      private float textureU
      Mappings:
      Namespace Name Mixin selector
      named textureU Lnet/minecraft/client/render/OutlineVertexConsumerProvider$OutlineVertexConsumer;textureU:F
      intermediary field_21067 Lnet/minecraft/class_4618$class_4586;field_21067:F
      official j Lgdr$a;j:F
    • textureV

      private float textureV
      Mappings:
      Namespace Name Mixin selector
      named textureV Lnet/minecraft/client/render/OutlineVertexConsumerProvider$OutlineVertexConsumer;textureV:F
      intermediary field_21068 Lnet/minecraft/class_4618$class_4586;field_21068:F
      official k Lgdr$a;k:F
  • Constructor Details

    • OutlineVertexConsumer

      OutlineVertexConsumer(VertexConsumer delegate, int red, int green, int blue, int alpha)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/client/render/OutlineVertexConsumerProvider$OutlineVertexConsumer;<init>(Lnet/minecraft/client/render/VertexConsumer;IIII)V
      intermediary <init> Lnet/minecraft/class_4618$class_4586;<init>(Lnet/minecraft/class_4588;IIII)V
      official <init> Lgdr$a;<init>(Lfae;IIII)V
  • Method Details

    • fixedColor

      public void fixedColor(int red, int green, int blue, int alpha)
      Makes this consumer always use the same color for subsequent vertices until 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
      Overrides:
      fixedColor in class FixedColorVertexConsumer
      Mappings:
      Namespace Name Mixin selector
      named fixedColor Lnet/minecraft/client/render/VertexConsumer;fixedColor(IIII)V
      intermediary method_22901 Lnet/minecraft/class_4588;method_22901(IIII)V
      official b Lfae;b(IIII)V
    • unfixColor

      public void unfixColor()
      Makes this consumer no longer use the color set in fixedColor(int, int, int, int).
      Specified by:
      unfixColor in interface VertexConsumer
      Overrides:
      unfixColor in class FixedColorVertexConsumer
      Mappings:
      Namespace Name Mixin selector
      named unfixColor Lnet/minecraft/client/render/VertexConsumer;unfixColor()V
      intermediary method_35666 Lnet/minecraft/class_4588;method_35666()V
      official l Lfae;l()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.

      Returns:
      this consumer, for chaining
      Throws:
      IllegalStateException - if this consumer is not currently accepting a position element.
      Mappings:
      Namespace Name Mixin selector
      named vertex Lnet/minecraft/client/render/VertexConsumer;vertex(DDD)Lnet/minecraft/client/render/VertexConsumer;
      intermediary method_22912 Lnet/minecraft/class_4588;method_22912(DDD)Lnet/minecraft/class_4588;
      official a Lfae;a(DDD)Lfae;
    • color

      public VertexConsumer color(int red, int green, int blue, int alpha)
      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 in fixedColor(int, int, int, int).
      Mappings:
      Namespace Name Mixin selector
      named color Lnet/minecraft/client/render/VertexConsumer;color(IIII)Lnet/minecraft/client/render/VertexConsumer;
      intermediary method_1336 Lnet/minecraft/class_4588;method_1336(IIII)Lnet/minecraft/class_4588;
      official a Lfae;a(IIII)Lfae;
    • texture

      public VertexConsumer texture(float u, float v)
      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 texture Lnet/minecraft/client/render/VertexConsumer;texture(FF)Lnet/minecraft/client/render/VertexConsumer;
      intermediary method_22913 Lnet/minecraft/class_4588;method_22913(FF)Lnet/minecraft/class_4588;
      official a Lfae;a(FF)Lfae;
    • overlay

      public VertexConsumer overlay(int u, int v)
      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 overlay Lnet/minecraft/client/render/VertexConsumer;overlay(II)Lnet/minecraft/client/render/VertexConsumer;
      intermediary method_22917 Lnet/minecraft/class_4588;method_22917(II)Lnet/minecraft/class_4588;
      official a Lfae;a(II)Lfae;
    • light

      public VertexConsumer light(int u, int v)
      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 light Lnet/minecraft/client/render/VertexConsumer;light(II)Lnet/minecraft/client/render/VertexConsumer;
      intermediary method_22921 Lnet/minecraft/class_4588;method_22921(II)Lnet/minecraft/class_4588;
      official b Lfae;b(II)Lfae;
    • normal

      public VertexConsumer normal(float x, float y, float z)
      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 normal Lnet/minecraft/client/render/VertexConsumer;normal(FFF)Lnet/minecraft/client/render/VertexConsumer;
      intermediary method_22914 Lnet/minecraft/class_4588;method_22914(FFF)Lnet/minecraft/class_4588;
      official a Lfae;a(FFF)Lfae;
    • 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.
      Throws:
      IllegalStateException - if a color has been set in fixedColor(int, int, int, int).
      Mappings:
      Namespace Name Mixin selector
      named vertex Lnet/minecraft/client/render/VertexConsumer;vertex(FFFFFFFFFIIFFF)V
      intermediary method_23919 Lnet/minecraft/class_4588;method_23919(FFFFFFFFFIIFFF)V
      official a Lfae;a(FFFFFFFFFIIFFF)V
    • next

      public 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 next Lnet/minecraft/client/render/VertexConsumer;next()V
      intermediary method_1344 Lnet/minecraft/class_4588;method_1344()V
      official e Lfae;e()V