Jump to content

Problem with IVertexBuilder color


Duendilandia

Recommended Posts

I have create a quad with TER, it has the texture of water_still from vanilla Minecraft. The problem is that the texture is grey and I want to add it some color. 

I know how to do it, but when I add some color (red for example, whis is rgb(255, 0, 0)) it looks really strange. I think the problem is with the alpha.

This is the quad code:

private void addVertex(Matrix4f matrix, Matrix3f matrixNormal, IVertexBuilder vertexBuilder, float red, float green, float blue, float alpha, int combinedOverlay, int combinedLight) {
		vertexBuilder.vertex(matrix, 0.8125F, 0.9375F, 0.1875F).color(red, green, blue, alpha).uv(0.1875F, 0.005859375F).overlayCoords(combinedOverlay).uv2(combinedLight).normal(matrixNormal, 0.0F, 1.0F, 0.0F).endVertex();
		vertexBuilder.vertex(matrix, 0.1875F, 0.9375F, 0.1875F).color(red, green, blue, alpha).uv(0.8125F, 0.005859375F).overlayCoords(combinedOverlay).uv2(combinedLight).normal(matrixNormal, 0.0F, 1.0F, 0.0F).endVertex();
		vertexBuilder.vertex(matrix, 0.1875F, 0.9375F, 0.8125F).color(red, green, blue, alpha).uv(0.8125F, 0.025390625F).overlayCoords(combinedOverlay).uv2(combinedLight).normal(matrixNormal, 0.0F, 1.0F, 0.0F).endVertex();
		vertexBuilder.vertex(matrix, 0.8125F, 0.9375F, 0.8125F).color(red, green, blue, alpha).uv(0.1875F, 0.025390625F).overlayCoords(combinedOverlay).uv2(combinedLight).normal(matrixNormal, 0.0F, 1.0F, 0.0F).endVertex();
	}

and with this line I call it in the render function:

this.addVertex(matrix4f, matrixNormal, vertexBuilder, 255, 0, 0, 1, combinedOverlay, combinedLight);

 

With this code, I think, the quad must be red, but with an alpha, but as yo can see isn´t red, it is back

001.png.f1078fa97b9d4299f5c8eb24a4727291.png

If I change the alpha to 255, the error still:

001.png.c95501f609b2e6d19ff028cc856cf7bf.png

also is I change the alpha to 0 it looks like if it is 255.

 

Thank you in advance

Link to comment
Share on other sites

When colors are using float type then you use values from 0 to 1. When colors are using int then you use values from 0 to 255. So, you can change to

this.addVertex(matrix4f, matrixNormal, vertexBuilder, 1, 0, 0, 1, combinedOverlay, combinedLight);

 

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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I want to add trees to my mod but all the examples I've seen so far include data generation, and not json files. The json files for the blocks are not the issue here. Unless trees require certain json files as a structure, I'm certain I've got this part covered. The thing I'm looking for is probably a deferred register or any other way to register something as a tree so it will grow from a sapling. Here is what I currently have: public static final DeferredRegister<ConfiguredFeature<?, ?>> TREES = DeferredRegister.create(Registries.CONFIGURED_FEATURE, ExtinctionCraft.MOD_ID); // How do I register the tree? public static final ResourceKey<ConfiguredFeature<?, ?>> SEQUOIA_KEY = registerKey("sequoia"); public static void bootstrap(BootstapContext<ConfiguredFeature<?, ?>> context) { register(SEQUOIA_KEY, Feature.TREE, new TreeConfiguration.TreeConfigurationBuilder( BlockStateProvider.simple(ModBlocks.SEQUOIA_LOG.get()), new StraightTrunkPlacer(5, 4, 3), BlockStateProvider.simple(ModBlocks.SEQUOIA_LEAVES.get()), new PineFoliagePlacer(ConstantInt.of(3), ConstantInt.of(2), ConstantInt.of(3)), new TwoLayersFeatureSize(1, 0, 2)).build()); } public static ResourceKey<ConfiguredFeature<?, ?>> registerKey(String name) { return ResourceKey.create(Registries.CONFIGURED_FEATURE, new ResourceLocation(ExtinctionCraft.MOD_ID, name)); } private static <FC extends FeatureConfiguration, F extends Feature<FC>> void register(BootstapContext<ConfiguredFeature<?, ?>> context, ResourceKey<ConfiguredFeature<?, ?>> key, F feature, FC configuration) { context.register(key, new ConfiguredFeature<>(feature, configuration)); } I also have this Grower class: public class SequoiaGrower extends AbstractTreeGrower { @Nullable @Override protected ResourceKey<ConfiguredFeature<?, ?>> getConfiguredFeature(RandomSource pRandom, boolean pHasFlowers) { return ModConfiguredFeatures.SEQUOIA_KEY; } } And the registry of the blocks that make up the tree (excluding wood blocks that I have registered but that don't make up part of a tree): public static final RegistryObject<Block> SEQUOIA_LOG = registerBlock("sequoia_log", () -> new ModFlammableRotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.OAK_LOG).strength(3))); public static final RegistryObject<Block> SEQUOIA_LEAVES = registerBlock("sequoia_leaves", () -> new ModLeavesBlock(BlockBehaviour.Properties.copy(Blocks.OAK_LEAVES))); public static final RegistryObject<Block> SEQUOIA_SAPLING = registerBlock("sequoia_sapling", () -> new SaplingBlock(new SequoiaGrower(), BlockBehaviour.Properties.copy(Blocks.OAK_SAPLING)));   How do I move on from here? Examples of your code are welcome too.
    • These libraries failed to download. Try again. com.google.code.findbugs:jsr305:3.0.2 commons-io:commons-io:2.4
    • Make a test just with Forge - without any mods Then add the latest.log from your logs-folder
    • Make a test with a custom directory https://minecrafthopper.net/help/guides/changing-game-directory/
  • Topics

×
×
  • Create New...

Important Information

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