Links
Tags
Creators
Details
Licensed CC0-1.0
Published 3 years ago
Updated last week
All versions
0.4+1.20.1
Release
MCRGB 0.4+1.20.1last week 22
Compatibility
Minecraft: Java Edition
1.20.1
Platform
Fabric
Supported environments
Client-side
Changes
MCRGB 0.4
Features:
Added two new colour averaging algorithms:
- Mean : Calculates the mean average colour of the entire texture. Best for when the block is being viewed from a distance.
- Median : Calculates the median colour, which is an approximation of the dominant colour of the texture. Ignores any other colours present in the texture.
- The legacy MCRGB algorithm remains as the default option. Calculates and displays each distinct colour in the texture. Shows a percentage of how dominant each colour is, in the texture.
- Added a framework for adding more algorithms in future updates.
- Colour Averaging Method can be selected in the configuration settings.
Added creative mode dragging functionality:
- In Creative Mode, you can now drag items from the MCRGB UI straight into your hotbar.
- Left-click to pick up one item.
- Middle-click to pick up a full stack.
- Right-clicking still opens the Block Info GUI
- This works on vanilla servers and no longer requires Operator Permissions, as it simply emulates the Creative Inventory. In theory, it should work on any server, regardless of server side plugins/permissions, so long as you have access to Creative Mode.
- You can revert to the old command-based functionality in the configuration settings.
- You can also switch to "View Only" mode, which disallows spawning in items. Item Spawning Mode is locked to "View Only" when in Survival, Adventure or Spectator Mode.
Added clipboard functionality:
- Added a new keybind "Quick Search from Clipboard" which is set to "U" by default.
- Pressing this key will automatically search for a colour, if a valid HEX code is found in your device clipboard. This works regardless of if the UI is already open.
- With a Block Info GUI open, you can also copy a hex code to your device clipboard.
- Middle-click on any pixel in the displayed texture, or on any hex code displayed in the side window.
Toasts:
- System messages from MCRGB, such as "Reloaded colours" or "Copied Hex code to clipboard" no longer appear in the game chat.
- These now appear as toast notifications in the top right corner of the screen.
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:BSidqwQl:FrYqNUD2"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:BSidqwQl:FrYqNUD2"
}

