ChiselsAndBits / FlatColoredBlocks

A Minecraft mod about building with vast quantities of colored blocks.
http://minecraft.curseforge.com/projects/flat-colored-blocks
MIT License
20 stars 13 forks source link

Interaction concerns with Architecturecraft - Keep this open till its resolved. #52

Closed P3rf3ctXZer0 closed 6 years ago

P3rf3ctXZer0 commented 6 years ago

https://github.com/elytra/ArchitectureCraft/issues/9

darkevilmac commented 6 years ago

So how does flatcolouredblocks store colour data? Is there an unlisted prop with a tile or is it just registering a bunch of blocks with different states? I wasn't able to gather that based on my fairly quick look.

AlgorithmX2 commented 6 years ago

Its stored as a true state, https://github.com/AlgorithmX2/FlatColoredBlocks/blob/1.12/src/main/java/mod/flatcoloredblocks/block/BlockFlatColored.java#L156

And colors for blocks and items are available via standard IItemColor / IBlockColor https://github.com/AlgorithmX2/FlatColoredBlocks/blob/1.12/src/main/java/mod/flatcoloredblocks/client/ClientSide.java#L54

darkevilmac commented 6 years ago

Looks like IBlockColor wasn't implemented in ArchitectureCraft by the original dev (or it was removed during my refactor), it should be fine to close this issue as I believe I've solved the problem on my repo.