MCMOD - CurseForge - Modrinth
WolfTailUI is a UI utility code library designed for Minecraft 1.7.10 Forge. Emphasize the cyclic use and automatically created UI and color schemes, reliable alignment, and more.
WolfTailUI also provides a very convenient way to push Toast notifications into the game.
Simple GuiScreen:
Minecraft.getMinecraft().displayGuiScreen(object: WGuiBased(title= "WolfTail_testUI", size =
Pair(200, 180), lightStyle = true) {
override fun start() {
this.addWidget(WString("The string of 'Hello' from WolfTailUI!", Pair(5, 5)))
this.addWidget(WButton("And a button!", Pair(5, 20), Pair(95, 40), false) {})
this.addWidget(WString("The string of 'Hello' from WolfTailUI!", Pair(13, 180 - 15), color = Color(64, 76, 94), shadow = Color.WHITE))
this.addWidget(WButton("And a button!", Pair(200 - 95, 180 - 40), Pair(200 - 5, 180 - 20), true) {})
}
})Poas a toast:
WolfTailUI.addToast(IToast.create("Hello", "World", StyleToast.TOAST_DARK_UI, Items.pumpkin_pie))This project used color from Nord. Thanks NordTheme create this color palette.
maven {
name "kTT MavenSnapshots"
url "https://maven.kessokuteatime.work/snapshots"
}
implementation "club.someoneice.wolftail:WolfTailUI:${wui_version}"[ ] Json Style Pack [ ] Json GUI [ ] Game UI Based [ ] Default Styles [ ] Game Widgets [x] Toast


