Uses of Interface
net.minecraftforge.client.model.pipeline.IVertexConsumer
-
-
Uses of IVertexConsumer in net.minecraft.client.renderer.model
Methods in net.minecraft.client.renderer.model with parameters of type IVertexConsumer Modifier and Type Method Description void
BakedQuad. pipe(IVertexConsumer consumer)
-
Uses of IVertexConsumer in net.minecraftforge.client.model
Methods in net.minecraftforge.client.model with parameters of type IVertexConsumer Modifier and Type Method Description private void
FluidModel.BakedFluid. putVertex(IVertexConsumer consumer, Direction side, boolean offset, float x, float y, float z, float u, float v)
private static void
ItemLayerModel. putVertex(IVertexConsumer consumer, Direction side, float x, float y, float z, float u, float v, int uLight, int vLight)
private static void
ItemTextureQuadConverter. putVertex(IVertexConsumer consumer, Direction side, float x, float y, float z, float u, float v, int color, int luminosity)
-
Uses of IVertexConsumer in net.minecraftforge.client.model.b3d
Methods in net.minecraftforge.client.model.b3d with parameters of type IVertexConsumer Modifier and Type Method Description private void
B3DLoader.BakedWrapper. putVertexData(IVertexConsumer consumer, B3DModel.Vertex v, Vector3f faceNormal, TextureAtlasSprite sprite)
-
Uses of IVertexConsumer in net.minecraftforge.client.model.obj
Methods in net.minecraftforge.client.model.obj with parameters of type IVertexConsumer Modifier and Type Method Description private void
OBJModel. putVertexData(IVertexConsumer consumer, Vector4f position0, Vector2f texCoord0, Vector3f normal0, Vector4f color0, Vector2f uv2, TextureAtlasSprite texture)
-
Uses of IVertexConsumer in net.minecraftforge.client.model.pipeline
Classes in net.minecraftforge.client.model.pipeline that implement IVertexConsumer Modifier and Type Class Description class
BakedQuadBuilder
Allows easier building of BakedQuad objects.static class
LightUtil.ItemConsumer
class
QuadGatheringTransformer
class
TransformerConsumer
class
TRSRTransformer
class
VertexBufferConsumer
Assumes VertexFormatElement is present in the BufferBuilder's vertex format.class
VertexLighterFlat
class
VertexLighterSmoothAo
class
VertexTransformer
Fields in net.minecraftforge.client.model.pipeline declared as IVertexConsumer Modifier and Type Field Description protected IVertexConsumer
QuadGatheringTransformer. parent
private IVertexConsumer
TransformerConsumer. parent
protected IVertexConsumer
VertexTransformer. parent
Methods in net.minecraftforge.client.model.pipeline with parameters of type IVertexConsumer Modifier and Type Method Description void
IVertexProducer. pipe(IVertexConsumer consumer)
static void
LightUtil. putBakedQuad(IVertexConsumer consumer, BakedQuad quad)
void
QuadGatheringTransformer. setParent(IVertexConsumer parent)
void
VertexLighterFlat. setParent(IVertexConsumer parent)
Constructors in net.minecraftforge.client.model.pipeline with parameters of type IVertexConsumer Constructor Description ItemConsumer(IVertexConsumer parent)
TransformerConsumer(IVertexConsumer parent)
TRSRTransformer(IVertexConsumer parent, TransformationMatrix transform)
VertexTransformer(IVertexConsumer parent)
-