Class MeshVertexConsumerProvider.MeshVertexConsumer

java.lang.Object
meteordevelopment.meteorclient.utils.render.MeshVertexConsumerProvider.MeshVertexConsumer
All Implemented Interfaces:
net.minecraft.client.render.VertexConsumer
Enclosing class:
MeshVertexConsumerProvider

public static class MeshVertexConsumerProvider.MeshVertexConsumer extends Object implements net.minecraft.client.render.VertexConsumer
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    net.minecraft.client.render.VertexConsumer
    color(int red, int green, int blue, int alpha)
     
    void
    fixedColor(int red, int green, int blue, int alpha)
     
    net.minecraft.client.render.VertexConsumer
    light(int u, int v)
     
    net.minecraft.client.render.VertexConsumer
    normal(float x, float y, float z)
     
    net.minecraft.client.render.VertexConsumer
    overlay(int u, int v)
     
    void
    setOffset(int offsetX, int offsetY, int offsetZ)
     
    net.minecraft.client.render.VertexConsumer
    texture(float u, float v)
     
    net.minecraft.client.render.VertexConsumer
    vertex(float x, float y, float z)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface net.minecraft.client.render.VertexConsumer

    color, color, colorRgb, light, normal, overlay, quad, quad, vertex, vertex, vertex, vertex, vertex
  • Constructor Details

    • MeshVertexConsumer

      public MeshVertexConsumer(Mesh mesh)
  • Method Details

    • setOffset

      public void setOffset(int offsetX, int offsetY, int offsetZ)
    • vertex

      public net.minecraft.client.render.VertexConsumer vertex(float x, float y, float z)
      Specified by:
      vertex in interface net.minecraft.client.render.VertexConsumer
    • color

      public net.minecraft.client.render.VertexConsumer color(int red, int green, int blue, int alpha)
      Specified by:
      color in interface net.minecraft.client.render.VertexConsumer
    • texture

      public net.minecraft.client.render.VertexConsumer texture(float u, float v)
      Specified by:
      texture in interface net.minecraft.client.render.VertexConsumer
    • overlay

      public net.minecraft.client.render.VertexConsumer overlay(int u, int v)
      Specified by:
      overlay in interface net.minecraft.client.render.VertexConsumer
    • light

      public net.minecraft.client.render.VertexConsumer light(int u, int v)
      Specified by:
      light in interface net.minecraft.client.render.VertexConsumer
    • normal

      public net.minecraft.client.render.VertexConsumer normal(float x, float y, float z)
      Specified by:
      normal in interface net.minecraft.client.render.VertexConsumer
    • fixedColor

      public void fixedColor(int red, int green, int blue, int alpha)