Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

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

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);

 

  • Author

Also the alpha is really transparent. I want the same alpha as water. 

In this photo my alpha is 192 and the RenderType is translucentNoCrumbling().

001.png.890b6a3231bc02932ed3912201586ae1.png

How can I get the same alpha?

 

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.