Uses of Interface
net.neoforged.neoforge.client.gui.GuiLayer
Packages that use GuiLayer
Package
Description
Events fired only on the client-side, chiefly related to rendering and user interfaces (screens and input).
-
Uses of GuiLayer in net.neoforged.neoforge.client.event
Fields in net.neoforged.neoforge.client.event declared as GuiLayerMethods in net.neoforged.neoforge.client.event that return GuiLayerMethods in net.neoforged.neoforge.client.event with parameters of type GuiLayerModifier and TypeMethodDescriptionprivate void
RegisterGuiLayersEvent.register
(RegisterGuiLayersEvent.Ordering ordering, @Nullable ResourceLocation other, ResourceLocation key, GuiLayer layer) void
RegisterGuiLayersEvent.registerAbove
(ResourceLocation other, ResourceLocation id, GuiLayer layer) Registers an layer that renders above another.void
RegisterGuiLayersEvent.registerAboveAll
(ResourceLocation id, GuiLayer layer) Registers a layer that renders above all others.void
RegisterGuiLayersEvent.registerBelow
(ResourceLocation other, ResourceLocation id, GuiLayer layer) Registers a layer that renders below another.void
RegisterGuiLayersEvent.registerBelowAll
(ResourceLocation id, GuiLayer layer) Registers a layer that renders below all others.void
RegisterGuiLayersEvent.replaceLayer
(ResourceLocation id, GuiLayer replacement) Replace the layer with the givenid
with a new one.Method parameters in net.neoforged.neoforge.client.event with type arguments of type GuiLayerModifier and TypeMethodDescriptionvoid
RegisterGuiLayersEvent.wrapLayer
(ResourceLocation id, UnaryOperator<GuiLayer> wrapper) Wrap the layer with the givenid
in a new layer.Constructors in net.neoforged.neoforge.client.event with parameters of type GuiLayerModifierConstructorDescriptionPost
(GuiGraphics guiGraphics, DeltaTracker partialTick, ResourceLocation name, GuiLayer layer) Pre
(GuiGraphics guiGraphics, DeltaTracker partialTick, ResourceLocation name, GuiLayer layer) protected
RenderGuiLayerEvent
(GuiGraphics guiGraphics, DeltaTracker partialTick, ResourceLocation name, GuiLayer layer) -
Uses of GuiLayer in net.neoforged.neoforge.client.gui
Fields in net.neoforged.neoforge.client.gui declared as GuiLayerModifier and TypeFieldDescriptionprivate final GuiLayer
GuiLayerManager.NamedLayer.layer
The field for thelayer
record component.Methods in net.neoforged.neoforge.client.gui that return GuiLayerModifier and TypeMethodDescriptionGuiLayerManager.NamedLayer.layer()
Returns the value of thelayer
record component.Methods in net.neoforged.neoforge.client.gui with parameters of type GuiLayerModifier and TypeMethodDescriptionGuiLayerManager.add
(ResourceLocation name, GuiLayer layer) GuiLayerManager.add
(ResourceLocation name, GuiLayer layer, BooleanSupplier shouldRender) Constructors in net.neoforged.neoforge.client.gui with parameters of type GuiLayerModifierConstructorDescriptionNamedLayer
(ResourceLocation name, GuiLayer layer) Creates an instance of aNamedLayer
record class.