Jump to content

Recommended Posts

Posted (edited)

I have a pretty simple GUI, where I add two buttons. Both are added but neither button's IPressable is called when I click the button. The button highlights on hover.

 

Button initialization:

buttons.clear();
buttons.add(new Button(guiLeft + 8, guiTop + 39, 48, 20, new TranslationTextComponent("gui.battlepets.pet.skills").getFormattedText(),	(button) -> {
    mc.player.closeScreen();
}));

 

Screen class:

https://github.com/BigBadE/BattlePets/blob/master/src/main/java/bigbade/battlepets/client/gui/PetScreen.java

  Reveal hidden contents

 

I put a print on top of the button press callback, yet nothing is printed.

Edited by Big_Bad_E
Posted
  On 9/7/2019 at 3:20 AM, Big_Bad_E said:

I have a pretty simple GUI, where I add two buttons. Both are added but neither button's IPressable is called when I click the button. The button highlights on hover.

 

Button initialization:

buttons.clear();
buttons.add(new Button(guiLeft + 8, guiTop + 39, 48, 20, new TranslationTextComponent("gui.battlepets.pet.skills").getFormattedText(),	(button) -> {
    mc.player.closeScreen();
}));

 

Screen class:

https://github.com/BigBadE/BattlePets/blob/master/src/main/java/bigbade/battlepets/client/gui/PetScreen.java

  Reveal hidden contents

 

I put a print on top of the button press callback, yet nothing is printed.

Expand  

I don't see a print...

Posted
  On 9/7/2019 at 3:25 AM, ProPane865 said:

Ok... and? This thread should be marked as "solved" if you removed the print statement.

Expand  

No... that’s not how it works. removing a print statement didn’t fix my problem.

 

  On 9/7/2019 at 9:14 AM, diesieben07 said:

You need to use Screen#addButton to add buttons.

Expand  

I will change the method, I’ve been looking at old code that worked without thinking of changes like this.

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.