ChromaticityBlock

⭐ — (2 endorsements) 📥 946 downloads 📌 v1.21-1.1-fabric 📅 2/25/2024
⚪ Last updated 2024

By Yancey2023 · fabric

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 7/11/2024 📅 Created: 2/25/2024
⚠️ Install Order · 2 steps
1🛠️ Forge — Minecraft Forge (mod loader) Download ↗
2🛠️ Fabric — Fabric Loader Download ↗

Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.

🔍 Analysis

  • 👍 0.2% endorsement rate
  • 🏆 #881 of 885 fabric mods in this game by downloads

📋 About This Mod

English | (https://github.com/Yancey2023/ChromaticityBlock/blob/master/README_CN.md) # ChromaticityBlock This mod adds chromaticity block, whose rendering is not affected by lighting, making it particularly suitable for convenient chromaticity cutouts. Supported minecraft versions: `1.12.2-forge`,`1.16.5-fabric`,`1.20.4-fabric`,`1.20.5-fabric`,`1.20.6-fabric`,`1.21-fabric` !(https://cdn.modrinth.com/data/cached_images/b247621f3988b9c76f906d10c9752a2753a06109.png) !(https://cdn.modrinth.com/data/cached_images/d6099b121f06851ab79aa9c77a678cc7a0eae1f3.png) !(https://cdn.modrinth.com/data/cached_images/3ed2e532d1fac621c4a6d9d27e2a2fe5caebc7b2.png) ## How to Use **Method One**: Use the common colors built into the creative mode item bar directly. **Method Two**: Obtain chromaticity blocks of any color by adding them through NBT. ## Commands to Get Chromaticity Blocks of Any Color > The common colors built into the creative mode item bar should generally meet your needs. If you want to customize colors, you will need to use commands to get chromaticity blocks of any color. - ### Before MC 1.13 Version `give @s chromaticityblock:chromaticity_block 1 0 {"BlockEntityTag":{"color":-1}}` `setblock ~ ~ ~ chromaticityblock:chromaticity_block 0 normal {"color":-1}` - ### After MC 1.13 Version `give @s chromaticityblock:chromaticity_block{"BlockEntityTag":{"color":-1}}` `setblock ~ ~ ~ chromaticityblock:chromaticity_block{"color":-1}` ## Color Parameter The color of the chromaticity block is determined by color NBT. Any color can be obtained by mixing red, green, and blue, so to confirm a color, you only need four argb parameters, which are alpha, red, green, and blue. For example, the hexadecimal color value FF4488CC contains four argb parameters. FF is alpha, 44 is red, 88 is green, CC is blue, and the range of these four parameters is 0-255 (corresponding to hexadecimal 0-FF). > It should be noted that although alpha can be stored in the number, there is actually no transparency effect in this mod. Unfortunately, integers in NBT cannot be input in HEX, so you need to convert to DEC. You can use the calculator that comes with Windows to complete this conversion. Use the programmer mode, set the mode to DWORLD, enter the value in HEX, and you can see this value in DEC. !(https://cdn.modrinth.com/data/cached_images/9fdc52e08c71dadcde6df00dabe393692a34581e.png) ## compatibility - **1.12.2 - forge - Optifine** Not fully compatible. Optifine can be added, but this mod not compatible with any shader. If you try to use a shader, chromaticity block will have serious rendering errors. - **1.16.5 - fabric - Sodium - Iris** Compatibility. Although using shader may have some minor issues, there are no serious rendering errors. Here are some common shadow effects: - Sildurs_v1.26 !(https://cdn.modrinth.com/data/cached_images/5c5b274d6774b8e86bdd5904ce5ee10a7db22e26.png) - BSL_v8.2.08 !(https://cdn.modrinth.com/data/cached_images/5d301585fd9418b426b1781235139b3cbd090eec.png) - ComplementaryShaders_v4.4 !(https://cdn.modrinth.com/data/cached_images/def3f0663659511a3d11331ccf92ac543381c8a1.png) - **1.20.4 - fabric - Sodium - Iris** same as 1.16.5 - fabric - Sodium - Iris ## About - Author: Yancey - QQ: 1709185482 - Email: 1709185482@qq.com - GitHub: <https://github.com/Yancey2023/ChromaticityBlock> <https://github.com/Yancey2023/ChromaticityBlock-forge>

English | [简体中文](https://github.com/Yancey2023/ChromaticityBlock/blob/master/README_CN.md)

# ChromaticityBlock

This mod adds chromaticity block, whose rendering is not affected by lighting, making it particularly suitable for convenient chromaticity cutouts.

Supported minecraft versions: `1. 12. 2-forge`,`1. 16. 5-fabric`,`1. 20. 4-fabric`,`1. 20. 5-fabric`,`1. 20. 6-fabric`,`1. 21-fabric`

!(https://cdn.modrinth.com/data/cached_images/b247621f3988b9c76f906d10c9752a2753a06109.png)

!(https://cdn.modrinth.com/data/cached_images/d6099b121f06851ab79aa9c77a678cc7a0eae1f3.png)

!(https://cdn.modrinth.com/data/cached_images/3ed2e532d1fac621c4a6d9d27e2a2fe5caebc7b2.png)

## How to Use

Method One: Use the common colors built into the creative mode item bar directly.

Method Two: Obtain chromaticity blocks of any color by adding them through NBT.

## Commands to Get Chromaticity Blocks of Any Color

> The common colors built into the creative mode item bar should generally meet your needs. If you want to customize colors, you will need to use commands to get chromaticity blocks of any color.

- ### Before MC 1. 13 Version

`give @s chromaticityblock:chromaticity_block 1 0 {"BlockEntityTag":{"color":-1}}`

`setblock ~ ~ ~ chromaticityblock:chromaticity_block 0 normal {"color":-1}`

- ### After MC 1. 13 Version

`give @s chromaticityblock:chromaticity_block{"BlockEntityTag":{"color":-1}}`

`setblock ~ ~ ~ chromaticityblock:chromaticity_block{"color":-1}`

## Color Parameter

The color of the chromaticity block is determined by color NBT.

Any color can be obtained by mixing red, green, and blue, so to confirm a color, you only need four argb parameters, which are alpha, red, green, and blue.

For example, the hexadecimal color value FF4488CC contains four argb parameters. FF is alpha, 44 is red, 88 is green, CC is blue, and the range of these four parameters is 0-255 (corresponding to hexadecimal 0-FF).

> It should be noted that although alpha can be stored in the number, there is actually no transparency effect in this mod.

Unfortunately, integers in NBT cannot be input in HEX, so you need to convert to DEC.

You can use the calculator that comes with Windows to complete this conversion. Use the programmer mode, set the mode to DWORLD, enter the value in HEX, and you can see this value in DEC.

!(https://cdn.modrinth.com/data/cached_images/9fdc52e08c71dadcde6df00dabe393692a34581e.png)

## compatibility

- 1. 12. 2 - forge - Optifine

Not fully compatible. Optifine can be added, but this mod not compatible with any shader. If you try to use a shader, chromaticity block will have serious rendering errors.

- 1. 16. 5 - fabric - Sodium - Iris

Compatibility. Although using shader may have some minor issues, there are no serious rendering errors. Here are some common shadow effects:

- Sildurs_v1. 26

!(https://cdn.modrinth.com/data/cached_images/5c5b274d6774b8e86bdd5904ce5ee10a7db22e26.png)

- BSL_v8. 2. 08

!(https://cdn.modrinth.com/data/cached_images/5d301585fd9418b426b1781235139b3cbd090eec.png)

- ComplementaryShaders_v4. 4

!(https://cdn.modrinth.com/data/cached_images/def3f0663659511a3d11331ccf92ac543381c8a1.png)

- 1. 20. 4 - fabric - Sodium - Iris

same as 1. 16. 5 - fabric - Sodium - Iris

- Author: Yancey

- QQ: 1709185482

- Email: 1709185482@qq.com

  • GitHub:
🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Mods
Author
Yancey2023
Version
1.21-1.1-fabric
Downloads
946
Endorsements
2
Category
fabric
Created
2/25/2024
Updated
7/11/2024
Game Versions
1.21
Tags
utility

🔧 How to Install Minecraft Mods Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Mods →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Mods commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Mods versions does ChromaticityBlock support?

The author lists 1.21. Other versions may work but are untested by the author.

What is the latest version of ChromaticityBlock?

Version 1.21-1.1-fabric, published 2024-07-11 with 946 downloads recorded at the source.

Keep browsing — more Minecraft Mods mods await

📋 All Minecraft Mods Mods 🏆 Top 25 📂 More fabric 👤 More by Yancey2023 🔎 Similar Mods 🌐 Best fabric (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods