Tags
Creators
Details
3.0.0
Compatibility
Changes
This release fixes two compatibility issues.
- Blocks that are tinted white no longer lag the client when Sodium is installed
- Add a
layoutproperty to grid format colormaps. The default grid column assignment has been changed to align with Optifine current and expected future column assignments.
Layouts control how the grid columns are assigned by default.
- The
defaultlayout uses the current raw IDs of biomes as columns. As biome raw IDs may change from version to version, these assignments should not be considered stable. - The
legacylayout uses the column assignment that 1.17 uses (for both vanilla and datapack biomes). Vanilla biomes added after 1.17 are assigned a column corresponding to a similar 1.17 biome. - The
stablelayout assigns each vanilla biome a column that is guaranteed to be stable across versions starting from 1.18. Datapack biomes are always assigned a column corresponding to a similar vanilla biome (even in Optifine formatted resource packs).
In order to preserve compatibility with Optifine formatted resource packs, the default grid column assignment has been changed to use the current raw IDs of biomes instead of their 1.17 values. This requires resource packs that use grid columns with the default column assignment to update. Resource pack artists that do not wish to update their colormaps can use the legacy layout in order to opt into the 1.17 column assignments.
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:V4IQxkZC:QVQzX9V8"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:V4IQxkZC:QVQzX9V8"
}
