Code Patterns
Copy-paste examples for common plugin tasks. Commands, events, ECS, GUI, and more.
All
225
Command
60
Damage
2
Ecs
27
Entity
5
Gui
75
Interaction
2
Inventory
4
Moderation
3
Permission
2
Player
9
Plugin
4
Storage
2
Teleport
3
Ui
22
Util
5
← Back to Patterns
java
ui
hytale-timeleft
Official Hytale UI: TimeLeft
Example Code
Group {
LayoutMode: Left;
Anchor: (Top: 20, Height: 60);
Group #TimeLeft {
Background: #000000(0.2);
Anchor: (Left: 20);
Padding: (Horizontal: 20, Vertical: 10);
LayoutMode: Left;
Group {
Background: "Clock.png";
Anchor: (Width: 40, Height: 40, Right: 10);
}
TimerLabel #TimeLabel {
Style: (FontSize: 32, Alignment: Center);
Seconds: 15 * 60;
}
}
}