Interaction concerns with Architecturecraft - Keep this open till its resolved.
P3rf3ctXZer0 opened this issue ยท 3 comments
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.
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.
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