Class StructureBlockScreen
java.lang.Object
net.minecraft.client.gui.DrawableHelper
net.minecraft.client.gui.AbstractParentElement
net.minecraft.client.gui.screen.Screen
net.minecraft.client.gui.screen.ingame.StructureBlockScreen
- All Implemented Interfaces:
Drawable,Element,ParentElement,TickableElement
@Environment(CLIENT) public class StructureBlockScreen extends Screen
-
Field Summary
Fields inherited from class net.minecraft.client.gui.screen.Screen
buttons, children, client, height, itemRenderer, passEvents, textRenderer, title, widthFields inherited from class net.minecraft.client.gui.DrawableHelper
GUI_ICONS_TEXTURE, OPTIONS_BACKGROUND_TEXTURE, STATS_ICON_TEXTURE -
Constructor Summary
Constructors Constructor Description StructureBlockScreen(StructureBlockBlockEntity structureBlock) -
Method Summary
Modifier and Type Method Description private voidcancel()private voiddone()protected voidinit()Called when a screen should be initialized.booleanisPauseScreen()booleankeyPressed(int keyCode, int scanCode, int modifiers)Callback for when a key down event has been captured.private booleanmethod_2516(StructureBlockBlockEntity.Action action)private voidmethod_32650(StructureBlockMode structureBlockMode)voidonClose()private floatparseFloat(String string)private intparseInt(String string)private longparseLong(String string)voidremoved()voidrender(MatrixStack matrices, int mouseX, int mouseY, float delta)voidresize(MinecraftClient client, int width, int height)voidtick()private voidupdateRotationButton()Methods inherited from class net.minecraft.client.gui.screen.Screen
addButton, addChild, children, filesDragged, getNarrationMessage, getTitle, getTooltipFromItem, handleTextClick, hasAltDown, hasControlDown, hasShiftDown, init, insertText, isCopy, isCut, isMouseOver, isPaste, isSelectAll, isValidCharacterForName, renderBackground, renderBackground, renderBackgroundTexture, renderOrderedTooltip, renderTextHoverEffect, renderTooltip, renderTooltip, renderTooltip, renderTooltip, sendMessage, sendMessage, shouldCloseOnEsc, wrapScreenErrorMethods inherited from class net.minecraft.client.gui.AbstractParentElement
getFocused, isDragging, setDragging, setFocusedMethods inherited from class net.minecraft.client.gui.DrawableHelper
drawCenteredString, drawCenteredText, drawHorizontalLine, drawSprite, drawStringWithShadow, drawTexture, drawTexture, drawTexture, drawTexture, drawTextWithShadow, drawVerticalLine, fill, fillGradient, fillGradient, getZOffset, method_29343, method_33284, setZOffsetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.minecraft.client.gui.Element
mouseMovedMethods inherited from interface net.minecraft.client.gui.ParentElement
changeFocus, charTyped, focusOn, hoveredElement, keyReleased, mouseClicked, mouseDragged, mouseReleased, mouseScrolled, setInitialFocus
-
Field Details
-
STRUCTURE_NAME_TEXT
-
POSITION_TEXT
-
SIZE_TEXT
-
INTEGRITY_TEXT
-
CUSTOM_DATA_TEXT
-
INCLUDE_ENTITIES_TEXT
-
DETECT_SIZE_TEXT
-
SHOW_AIR_TEXT
-
SHOW_BOUNDING_BOX_TEXT
-
field_27993
-
field_27994
-
structureBlock
-
mirror
-
rotation
-
mode
-
ignoreEntities
private boolean ignoreEntities -
showAir
private boolean showAir -
showBoundingBox
private boolean showBoundingBox -
inputName
-
inputPosX
-
inputPosY
-
inputPosZ
-
inputSizeX
-
inputSizeY
-
inputSizeZ
-
inputIntegrity
-
inputSeed
-
inputMetadata
-
buttonSave
-
buttonLoad
-
buttonRotate0
-
buttonRotate90
-
buttonRotate180
-
buttonRotate270
-
buttonDetect
-
buttonEntities
-
buttonMirror
-
buttonShowAir
-
buttonShowBoundingBox
-
decimalFormat
-
-
Constructor Details
-
StructureBlockScreen
-
-
Method Details
-
tick
public void tick()- Specified by:
tickin interfaceTickableElement- Overrides:
tickin classScreen
-
done
private void done() -
cancel
private void cancel() -
init
protected void init()Called when a screen should be initialized.This method is called when this screen is opened or resized.
-
resize
-
removed
public void removed() -
updateRotationButton
private void updateRotationButton() -
method_32650
-
method_2516
-
parseLong
-
parseFloat
-
parseInt
-
onClose
public void onClose() -
keyPressed
public boolean keyPressed(int keyCode, int scanCode, int modifiers)Callback for when a key down event has been captured. The key code is identified by the constants inGLFWclass.- Specified by:
keyPressedin interfaceElement- Specified by:
keyPressedin interfaceParentElement- Overrides:
keyPressedin classScreen- Parameters:
keyCode- the named key code of the event as described in theGLFWclassscanCode- the unique/platform-specific scan code of the keyboard inputmodifiers- a GLFW bitfield describing the modifier keys that are held down (see GLFW Modifier key flags)- Returns:
trueto indicate that the event handling is successful/valid- See Also:
Keyboard.onKey(long, int, int, int, int),GLFW.GLFW_KEY_Q,GLFWKeyCallbackI.invoke(long, int, int, int, int)
-
render
-
isPauseScreen
public boolean isPauseScreen()- Overrides:
isPauseScreenin classScreen
-