Tags
Creators
Details
neo-mc-1.21.9-10-0.10.11
Compatibility
Changes
What's Changed
Features
Render Types
Armor Hider now uses its own RenderTypes which should resolve some issues (bar 1.20.x since it's not possible to use that approach there) with other semi-transparent entities (water/ice/glass) behind semi-transparent armor items or equipment (most prominent on shields). Any game version at or above 1.21 should now render water/glass/... correctly even if it's behind a semi-transparent item.
Additionally, these render types are now resolved from a central, non-version specific factory, which should make it easier for other mods to compat to Armor Hider.
Stonecutter Upgrade
Build and versioning (game-version specifics) have been simplified by leveraging Stonecutter 0.9.x
Compats
Compats to other mods are now written explicitly instead of using a reflection-based approach. The setup for this should be more easily extensible to other major mods.
Full Changelog: https://github.com/zannagh/armor-hider/compare/v0.10.10...v0.10.11
Optional dependencies
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:GgG2my3y:Ng21Pym2"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:GgG2my3y:Ng21Pym2"
}


