Interface StencilElement

All Superinterfaces:
FadableScreenElement, RenderElement, ScreenElement
All Known Implementing Classes:
DelegatedStencilElement, TextStencilElement

public interface StencilElement extends RenderElement
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    cleanUp(net.minecraft.client.gui.GuiGraphics graphics)
     
    default void
    prepareElement(net.minecraft.client.gui.GuiGraphics graphics)
     
    default void
    prepareStencil(net.minecraft.client.gui.GuiGraphics graphics)
     
    default void
    render(net.minecraft.client.gui.GuiGraphics graphics)
     
    void
    renderElement(net.minecraft.client.gui.GuiGraphics graphics)
     
    void
    renderStencil(net.minecraft.client.gui.GuiGraphics graphics)
     
    default void
    transform(net.minecraft.client.gui.GuiGraphics graphics)
     

    Methods inherited from interface net.createmod.catnip.gui.element.FadableScreenElement

    render

    Methods inherited from interface net.createmod.catnip.gui.element.RenderElement

    at, at, getHeight, getWidth, getX, getY, getZ, render, withAlpha, withBounds
  • Method Details

    • render

      default void render(net.minecraft.client.gui.GuiGraphics graphics)
      Specified by:
      render in interface RenderElement
    • renderStencil

      void renderStencil(net.minecraft.client.gui.GuiGraphics graphics)
    • renderElement

      void renderElement(net.minecraft.client.gui.GuiGraphics graphics)
    • transform

      default void transform(net.minecraft.client.gui.GuiGraphics graphics)
    • prepareStencil

      default void prepareStencil(net.minecraft.client.gui.GuiGraphics graphics)
    • prepareElement

      default void prepareElement(net.minecraft.client.gui.GuiGraphics graphics)
    • cleanUp

      default void cleanUp(net.minecraft.client.gui.GuiGraphics graphics)