Jump to content

Overlay issue


matthew123

Recommended Posts

I am getting this ghost stripe:

emzzTja.png

 

textureManager.bind(TextureLocations.OVERLAY_CHAKRA_BAR);
RenderSystem.enableBlend();
RenderSystem.blendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
matrix.pushPose();
AbstractGui.blit(matrix, x, y, 0, 0, selectedWidth, 4, TEX_WIDTH, TEX_HEIGHT);
AbstractGui.blit(matrix, x - 18, y - 11, 0, 4, 205, 20, TEX_WIDTH, TEX_HEIGHT);
if (jutsuData.hasNatures() && jutsuData.hasSelectedJutsu()) {
    float ratioAfterUse = (chakraData.getCurrentValue() - chakraCost) / (float) chakraData.getMaxValue();
    int selectedWidthAfterUse = (int) (width * ratioAfterUse);
    if (chakraCost <= chakraData.getCurrentValue()) {
        AbstractGui.blit(matrix, x, y, 0, 23, selectedWidthAfterUse, 4, TEX_WIDTH, TEX_HEIGHT);
        AbstractGui.drawCenteredString(
                matrix,
                hud.getFont(),
                "after: " + (chakraData.getCurrentValue() - chakraCost),
                60, y + 30, 0x00CCFF);
    }
    else {
        AbstractGui.blit(matrix, x, y, 0, 23, width, 4, TEX_WIDTH, TEX_HEIGHT);
        AbstractGui.drawCenteredString(
                matrix,
                hud.getFont(),
                "insufficient chakra!",
                60, y + 30, 0xFF0000);
    }
}
AbstractGui.drawCenteredString(
        matrix,
        hud.getFont(),
        chakraData.getCurrentValue() + " / " + chakraData.getMaxValue(),
        60, y + 50, 0x00CCFF);
matrix.popPose();
RenderSystem.disableBlend();

Here is the texture:

UiKQjUp.png

this is weird because the red texture was drawn correctly on top of the other one.

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.