Jump to content

[1.16.x][Solved] how to call the TintIndex of water into a custom model


raziel23x

Recommended Posts

I am currently trying to make the fake watersource block in the center of this model https://gist.github.com/raziel23x/af84f9d7b10f8e8e7974b5d8ac14d4ce to visually look like a minture water still source block but i am unable to figure out in code how to have the color of the texture to change to the correct color of the current biome its placed in and share the same color proteries of the actual water source block i am unsure how to make the calls to biome color in my block https://gist.github.com/raziel23x/63a79110599abcedadb9eab0fbddcbe8 to do so

 

 

Edited by raziel23x

Please Kill me i am married with 2 kids HELP!!!!!!!!

Link to comment
Share on other sites

One way to add Biome colors to blocks is by registering directly in the client proxy. A few different examples below. In your case, the example with the oak hedge will let your block change with biome, and change getFoliageColor() to getWaterColor().

 

private void registerColors() {

BlockColors blockcolors = Minecraft.getInstance().getBlockColors(); 
ItemColors itemcolors = Minecraft.getInstance().getItemColors(); 

blockcolors.register((state, world, pos, tintIndex) -> 12665871, 
     ModBlocks.HEDGE_RED_MAPLE);

blockcolors.register((state, reader, pos, i) -> FoliageColors.getSpruce(), 
     ModBlocks.SPRUCE_LEAF_CARPET, ModBlocks.HEDGE_SPRUCE); 

blockcolors.register((state, reader, pos, i) -> reader != null && pos != null ? BiomeColors.getFoliageColor(reader, pos) : FoliageColors.getDefault(), 
     ModBlocks.OAK_LEAF_CARPET, ModBlocks.HEDGE_OAK, 

itemcolors.register((stack, i) -> { 
     BlockState state = ((BlockItem)stack.getItem()).getBlock().getDefaultState(); 
     return blockcolors.getColor(state, null, null, i); 
}, ModBlocks.OAK_LEAF_CARPET, ModBlocks.HEDGE_OAK, ModBlocks.SPRUCE_LEAF_CARPET, 
ModBlocks.HEDGE_SPRUCE, ModBlocks.HEDGE_RED_MAPLE);

}
Edited by urbanxx001
Link to comment
Share on other sites

Well i tried it this way and when i run the code it crashes so i am scratching my head on this one

 

package raziel23x.projectskyblock.events;

import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.color.BlockColors;
import net.minecraft.world.biome.BiomeColors;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.client.event.ColorHandlerEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import raziel23x.projectskyblock.ProjectSkyblock;
import raziel23x.projectskyblock.utils.RegistryHandler;

@Mod.EventBusSubscriber(modid = ProjectSkyblock.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT)
public class ClientEvents {
    @SubscribeEvent
    public static void registerBlockColors(ColorHandlerEvent.Block event) {
        BlockColors blockcolors = Minecraft.getInstance().getBlockColors();

        blockcolors.register((state, reader, pos, color) -> reader != null && pos != null ? BiomeColors.getWaterColor(reader, pos) : -1, RegistryHandler.WATER_GENERATOR_BLOCK.get());
    }
}

 

Please Kill me i am married with 2 kids HELP!!!!!!!!

Link to comment
Share on other sites

I recommend taking a look at the Forge documentation for events. In your Main class, the mod event bus is added as:

@Mod(Main.MOD_ID)
@Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD)
public class Main {
    public static final String MOD_ID = "mod_id";
    public Main() {
         final IEventBus eventBus = FMLJavaModLoadingContext.get().getModEventBus();
         eventBus.addListener(this::onCommonSetup);
         eventBus.addListener(this::onClientSetup);
    }
    private void onClientSetup(FMLClientSetupEvent event) {
        registerColors();
    }
}

 

Alternatively, if you do the subscribe event, Poopoodice is saying you can get the colors from the event like:

BlockColors blockcolors = event.getBlockColors();
Edited by urbanxx001
Link to comment
Share on other sites

Well now i have the placed item working i am still having issues with the held item

 

package raziel23x.projectskyblock.events;

import net.minecraft.block.BlockState;
import net.minecraft.client.renderer.color.BlockColors;
import net.minecraft.client.renderer.color.ItemColors;
import net.minecraft.item.BlockItem;
import net.minecraft.world.biome.BiomeColors;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.client.event.ColorHandlerEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import raziel23x.projectskyblock.ProjectSkyblock;
import raziel23x.projectskyblock.utils.RegistryHandler;



@Mod.EventBusSubscriber(modid = ProjectSkyblock.MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT)
public class ClientEvents {


    @SubscribeEvent
    public static void registerBlockColors(ColorHandlerEvent.Block event) {

        BlockColors blockcolors = event.getBlockColors();

        blockcolors.register((state, reader, pos, color) -> reader != null && pos != null ? BiomeColors.getWaterColor(reader, pos) : -1, RegistryHandler.WATER_GENERATOR_BLOCK.get());

    }

    @SubscribeEvent
    public static void registerItemColors(ColorHandlerEvent.Item event) {

        ItemColors itemcolors = event.getItemColors();
        BlockColors blockcolors = event.getBlockColors();

        itemcolors.register((stack, i) -> {
            BlockState state = ((BlockItem)stack.getItem()).getBlock().getDefaultState();
            return blockcolors.getColor(state, null, null, i);
        }, RegistryHandler.WATER_GENERATOR_BLOCK_ITEM.get());
    }
}

 

Edited by raziel23x

Please Kill me i am married with 2 kids HELP!!!!!!!!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.