Interface GuiEvent.ScreenInitPost
- Enclosing interface:
 - GuiEvent
 
@Environment(CLIENT)
public static interface GuiEvent.ScreenInitPost
- 
Method Summary
Modifier and TypeMethodDescriptionvoidinit(net.minecraft.client.gui.screens.Screen screen, List<net.minecraft.client.gui.components.AbstractWidget> widgets, List<net.minecraft.client.gui.components.events.GuiEventListener> children) Invoked after a screen has been initialized and all the vanilla initialization logic has happened. 
- 
Method Details
- 
init
void init(net.minecraft.client.gui.screens.Screen screen, List<net.minecraft.client.gui.components.AbstractWidget> widgets, List<net.minecraft.client.gui.components.events.GuiEventListener> children) Invoked after a screen has been initialized and all the vanilla initialization logic has happened. Equivalent to Forge'sGuiScreenEvent.InitGuiEvent.Postevent.- Parameters:
 screen- The screen.widgets- The widgets of the screen.children- The listeners of the screen.
 
 -