Jump to content

[1.15] Issues With Button


Swirls

Recommended Posts

Hello there,

 

I added a addWidget method to instance of InventoryScreen but it seems not to work. I don't know what might be causing the issue.

Perhaps its my event handler. 

 

@Mod.EventBusSubscriber(modid = StudyingMod.MOD_ID, bus = Bus.MOD, value = Dist.CLIENT)
public class SurvivalInventory 
{
	
	@SubscribeEvent
	public static void addCustomButtonToInventory(GuiScreenEvent.InitGuiEvent.Pre event)
	{
	  if (event.getGui() instanceof InventoryScreen)
	  {
	    event.addWidget(new Button(8, 12, 6, 3, "test", new CustomAction()));
	  }
	}

	public static class CustomAction implements IPressable {
	  public void onPress(Button button) {

	   }
	}
}

 

If anyone knows what the issue might be, help would be really appreciated.

 

Thanks in forward!

Link to comment
Share on other sites

(or you can do bus=Bus.FORGE, but there's only two busses, and the Forge bus is the default bus).

 

Bus.Mod is for lifecycle events (FMLPreInit, Registry, etc)

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

14 minutes ago, Draco18s said:

(or you can do bus=Bus.FORGE, but there's only two busses, and the Forge bus is the default bus).

 

Bus.Mod is for lifecycle events (FMLPreInit, Registry, etc)

Again, it's not working for some reason. I tried changing x, y of the button but didn't help. At this point i really don't know what to do

Link to comment
Share on other sites

3 minutes ago, Danebi said:

Can you show your code?

Sure,

This is the code after I removed Bus.MOD and changed x,y,height,width of button

@Mod.EventBusSubscriber(modid = StudyingMod.MOD_ID, bus = Bus.FORGE, value = Dist.CLIENT)
public class SurvivalInventory 
{
	
	@SubscribeEvent
	public static void addCustomButtonToInventory(GuiScreenEvent.InitGuiEvent.Pre event)
	{
	  if (event.getGui() instanceof InventoryScreen)
	  {
	    event.addWidget(new Button(154, 33, 31, 14, "test", new CustomAction()));
	  }
	}

	public static class CustomAction implements IPressable {
	  public void onPress(Button button) {

	   }
	}
}

 

Edited by Swirls
Link to comment
Share on other sites

20 minutes ago, Swirls said:

Once again, I've been told on discord that event is called with event handler.

Isnt the event called with event handler?

Have you confirmed that it is being called? is the question, not where are YOU calling it?

Have you verified that your code, is in fact, being executed.

Use a breakpoint and the debugger.

Edited by Draco18s

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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.