Tags
Creators
Details
Licensed MIT
Published 4 years ago
Updated 2 months ago
All versions
3.0.10
Release
azurelib fabric 1.20.1last year 1,762
Uploaded by
Compatibility
Minecraft: Java Edition
1.20.1
Platforms
Fabric
Quilt
Supported environments
Client and server
Required content
Changes
v3.0.10
Bug Fixes
- Fixed an issue where keyframes would cause a crash if their index went below 0. The index now defaults to 0 when empty.
Credit to Collinvh for identifying and resolving the issue. - Fixed a problem where snapshots or queues being null would cause a crash. These are now safely skipped instead.
Credit to Collinvh for the fix.
Enhancements
- Partial Ticks Support:
- Added support for partial ticks in the
applyMolangQueriesmethod. The old version ofapplyMolangQuerieshas been made private and is marked for future removal to ensure streamlined functionality.
- Added support for partial ticks in the
New MoLang Queries
The following queries have been added:
query.head_pitch- Returns the pitch (vertical rotation) of the head.
query.head_yaw- Returns the yaw (horizontal rotation) of the head relative to the body.
query.hurt_time- Indicates the remaining time in the entity's hurt animation.
query.is_baby- Returns whether the entity is a baby (
trueorfalse).
- Returns whether the entity is a baby (
query.is_blocking- Determines if the entity is actively blocking (e.g., using a shield).
query.is_using_item- Returns whether the entity is actively using an item (e.g., eating or drinking).
query.limb_swing- Represents the position of the entity's limb swing animation (useful for walking or running effects).
query.limb_swing_amount- Indicates the speed or intensity of the limb swing animation.
query.in_air- Returns whether the entity is currently in the air and not on the ground.
query.item_current_durability- Provides the current durability of an item as a fraction of its maximum durability.
query.item_is_enchanted- Returns whether the item is enchanted.
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:7zlUOZvb:MpeVeMNc"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:7zlUOZvb:MpeVeMNc"
}

