Noaaan / MythicMetals

Fabric based Minecraft mod that adds new materials into the game. Includes new tools, ores, anvils, and sets of armor.
Other
74 stars 24 forks source link

A solution to Mythic Metals having 4 tabs in the creative inventory. #30

Closed K0-RR closed 2 years ago

K0-RR commented 3 years ago

Mods Biome Makeover and Draylar's Battle Towers use a system shown on these screenshots. Can Mythic Metals have something like this too? Both these mods are open source so maybe you can borrow some code?

image

image

Noaaan commented 3 years ago

Interesting idea, I will look into it

Azagwen commented 3 years ago

After investigation, it seems one must have copied from the other here, as both systems are almost identical. Implementing this seems easy but my first attempt failed on my end

Noaaan commented 3 years ago

Not sure why you are commenting this on my issue, lol.
Yes, from the issues above the implementation originates from Biome Makeover, and was re-implemented into Drayars Battle Tower, since the code is MIT. You can see Draylars implementation here: https://github.com/Draylar/battle-towers/blob/1.16.2/src/main/java/draylar/battletowers/group/BattleTowersItemGroup.java

Azagwen commented 3 years ago

Not sure why you are commenting this on my issue, lol. Yes, from the issues above the implementation originates from Biome Makeover, and was re-implemented into Drayars Battle Tower, since the code is MIT. You can see Draylars implementation here: https://github.com/Draylar/battle-towers/blob/1.16.2/src/main/java/draylar/battletowers/group/BattleTowersItemGroup.java

Because there's nothing in mine lol, so I thought I'd reply there. could also help other modders that will get your issue quoted in their own issues, who knows :D

Azagwen commented 3 years ago

I just finished implementing it, so if you want now you have a third mod to look at for references. here : https://github.com/Azagwen/ATBYW/tree/dev/src/main/java/net/azagwen/atbyw/group

Wish you luck if you decide to implement it, it shouldn't be too hard but some of the stuff those two mods given as exampels had was not working for me for some reason, so I had to change stuff around.