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 added some entities, and am trying to detect right/hit clicks, and left clicks. however none of them seem to trigger when I click the entity. I can confirm that I was clicking inside the entity hitbox

Interact Listener:

@SubscribeEvent
  public static void onEntityInteraction(PlayerInteractEvent.EntityInteract e) {
    if (e.getWorld().isRemote()) return;

    if (!(e.getTarget() instanceof DiceEntity)) return;
      
    DiceEntity dice = (DiceEntity)e.getTarget();
    ItemStack diceItem = dice.getItem().copy();

    dice.remove();
    
    e.getPlayer().addItemStackToInventory(diceItem);
  }

Hit Override:

@Override
  public boolean hitByEntity(Entity entity) {
    Main.LOGGER.info(this.getName().getString() + " was hit by " + entity.getName().getString());

    return super.hitByEntity(entity);
  }

ย 

repo: github.com/jvcmarcenes/dicehoard

3 hours ago, kiou.23 said:

however none of them seem to trigger when I click the entity

Since you are registering an instance of the Main class to the event buss, you need to remove the static keyword on theย onEntityInteraction() method. In addition to that, you also need to overrideย canBeCollidedWith() in your entity class. This should resolve both your issues.

ย 

  • Author
6 hours ago, vemerion said:

Since you are registering an instance of the Main class to the event buss, you need to remove the static keyword on theย onEntityInteraction() method. In addition to that, you also need to overrideย canBeCollidedWith() in your entity class. This should resolve both your issues.

That did it, thanks!

3 hours ago, kiou.23 said:

That did it, thanks!

No problem, glad I could help :)

Interesting mod idea, adding dice to Minecraft! Do you have any plans to add functionality/some effect when the dice lands on different numbers?

  • Author
8 hours ago, vemerion said:

No problem, glad I could help :)

Interesting mod idea, adding dice to Minecraft! Do you have any plans to add functionality/some effect when the dice lands on different numbers?

I wasn't thinking of it! cool idea, it could be like lucky blocks

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.