Code Patterns

Copy-paste examples for common plugin tasks. Commands, events, ECS, GUI, and more.

← Back to Patterns
gui

hytale-basictextbutton

Official Hytale UI: BasicTextButton with buttons with text elements

Example Code

java
@LabelStyle = (
  Hovered: (
    Background: #000000(0.2),
  )
);

@SelectedLabelStyle = (
  Default: (
    LabelStyle: (RenderBold: true)
  ),
  Hovered: (
    LabelStyle: (RenderBold: true),
    Background: #000000(0.2)
  )
);

TextButton #Button {
  Padding: (Full: 6);
  Style: @LabelStyle;
}