Tags
Creators
Details
Licensed MIT
Published 6 years ago
Updated last year
All versions
3.0.0-beta.12_1.20.4-fabric
Beta
3.0.0-beta.122 years ago 4,010
Compatibility
Minecraft: Java Edition
1.20.4
Platform
Fabric
Supported environments
Client-side
Changes
- Completely revamped the
ScoreboardAPI to be more ergonomicScoreis now mutable, and many methods have been added. Check the docs for more info
- Added
PlayerInteractionto provided libs - Added MIT license
- Added CT module list to crash reports
- Added a typings generator that produces a TypeScript definition file for the mod (see attachments)
- Added support for targeting non-Minecraft classes when using mixins
- Added
entityDamageandentityDeathtriggers - Fixed a bunch of misc bugs
- Disallow cancelling
playerInteracttrigger if the action isBreakBlock - Calling
.register()on a trigger more than once will now do nothing TextComponentnow mirrors/tellrawwith respect to click and hover event values
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:UiTVKucn:HPks8btp"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:UiTVKucn:HPks8btp"
}

