A highly customizable minecraft mod which allows you to fully design your own hud using either hudder's simple programming language or javascript.
Want to do math to show icons on your screen? Want to use JavaScript and/or hudder's own custom language?! then use hudder!
- Custom image rendering
- Variables
- Complex Arithmetic Operators
- Removal and complete replacement of the hotbar.
- Methods
- Console output
- User defined methods
Hudder allows you to create a custom hud to appear on your screen in game using it's very simple language (Or JavaScript if you know how to use it)!
{fps}
will produce:
You can learn more on the wiki
Full Variable list can also be found Here.
Full Method list can also be found Here.
Batch (Windows):
gradlew build
Unix (Mac/Linux):
./gradlew build
Batch (Windows):
gradlew runClient
Unix (Mac/Linux):
./gradlew runClient
In your build.gradle
add:
repositories {
//...
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
//...
dependencies {
modImplementation "maven.modrinth:hudder:[Hudder Version]-[Minecraft version]"
}