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 a block that I'd like monsters to break through, a little like doors. As a simpler alternative to the door implementation, I'm thinking that I'll make its collision box slightly smaller (like honey) and then slowly break the block whenever a monster is 'inside' it. However, I'm not sure how I should slowly break a block: I can destroy it or change the block at its position, but I don't know how to use the normal mining-progress system. All the methods I can find seem to be tailored specifically to a player intentionally mining the block, rather than being something I can just call whenever a condition is satisfied. What approaches should I look into?

I think a good starting point, as you already mentioned it, is to look at Zombie entity class and see what happens when the Zombie starts breaking a door. Specifically you can look at the BreakDoorGoal class that is used by the Zombie. Inside it, in the tick method, you will find this line

this.mob.level.destroyBlockProgress(this.mob.getId(), this.doorPos, i);

Essentially the function destroyBlockProgress is called by the zombie on its world (level) instance. I'm not sure if this is the actual method that shows the breaking overlay and also what values the last parameter (progress) should have, but by the name is definitively something I would try and see what it does

Don't blame me if i always ask for your help. I just want to learn to be better :)

  • Author

Here's my code. This works fairly well.

    protected int breakTime = 0;
    protected int lastBreakProgress = -1;
    protected int timeToBreak = 200; //10-second break time
    
    public void entityInside(BlockState state, Level level, BlockPos pos, Entity entity) {
        if (entity instanceof Monster) {

            ++this.breakTime;
            int i = (int)((float)this.breakTime / (float)this.timeToBreak * 10.0F);
            if (i != this.lastBreakProgress) {
                entity.level.destroyBlockProgress(entity.getId(), pos, i);
                this.lastBreakProgress = i;
            }

            if (breakTime == timeToBreak) {
                level.destroyBlock(pos, true);
                this.breakTime = 0;
            }

        }

        super.entityInside(state, level, pos, entity);
    }

 

  • Author

...that would explain some lingering weirdness. Block entity it is, then.

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.