Class ElytraLayer<T extends LivingEntity,M extends EntityModel<T>>
java.lang.Object
net.minecraft.client.renderer.entity.layers.LayerRenderer<T,M>
net.minecraft.client.renderer.entity.layers.ElytraLayer<T,M>
- Direct Known Subclasses:
CustomElytraTest.CustomElytraLayer
public class ElytraLayer<T extends LivingEntity,M extends EntityModel<T>>
extends LayerRenderer<T,M>
-
Field Summary
Modifier and TypeFieldDescriptionprivate final ElytraModel<T>
private static final ResourceLocation
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetElytraTexture
(ItemStack stack, T entity) Gets the texture to use with this ElytraLayer.void
render
(MatrixStack p_225628_1_, IRenderTypeBuffer p_225628_2_, int p_225628_3_, T p_225628_4_, float p_225628_5_, float p_225628_6_, float p_225628_7_, float p_225628_8_, float p_225628_9_, float p_225628_10_) boolean
shouldRender
(ItemStack stack, T entity) Determines if the ElytraLayer should render.Methods inherited from class net.minecraft.client.renderer.entity.layers.LayerRenderer
coloredCutoutModelCopyLayerRender, getParentModel, getTextureLocation, renderColoredCutoutModel
-
Field Details
-
WINGS_LOCATION
-
elytraModel
-
-
Constructor Details
-
ElytraLayer
-
-
Method Details
-
render
public void render(MatrixStack p_225628_1_, IRenderTypeBuffer p_225628_2_, int p_225628_3_, T p_225628_4_, float p_225628_5_, float p_225628_6_, float p_225628_7_, float p_225628_8_, float p_225628_9_, float p_225628_10_) - Specified by:
render
in classLayerRenderer<T extends LivingEntity,
M extends EntityModel<T>>
-
shouldRender
Determines if the ElytraLayer should render. ItemStack and Entity are provided for modder convenience, For example, using the same ElytraLayer for multiple custom Elytra.- Parameters:
stack
- The Elytra ItemStackentity
- The entity being rendered.- Returns:
- If the ElytraLayer should render.
-
getElytraTexture
Gets the texture to use with this ElytraLayer. This assumes the vanilla Elytra model.- Parameters:
stack
- The Elytra ItemStack.entity
- The entity being rendered.- Returns:
- The texture.
-