Jump to content

Entity BoundingBox not working


ss7

Recommended Posts

Hello,

 

My bounding box for my entity isn't working properly. The entity is staying 1 block in the ground. I've tried it with entity.setSize() but that doesn't worked. Also tried with this:

 

        @Override
public AxisAlignedBB getBoundingBox() 
{
	return boundingBox;
}

@Override
public AxisAlignedBB getCollisionBox(Entity par1Entity)
{
	return par1Entity.boundingBox;
}

@Override
public boolean canBeCollidedWith() 
{
	return isDead == false;
}

 

ss7

You sir are a god damn hero.

Link to comment
Share on other sites

Why gee, you could open up where

this.boundingBox

is defined and check:

 

 this.boundingBox = AxisAlignedBB.getBoundingBox(0.0D, 0.0D, 0.0D, 0.0D, 0.0D, 0.0D);

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

Hello,

 

Yeah, i tried this before, but i don't know how big my entity is (mine is like a zombie), i tried 0, 0, 0, 1, 2, 1 but that doesn't worked.

 

Also, you can't modify boudningBox, because it's final. I'm just returning that AABB.getBoudningBox(0, 0, 0, 1, 2, 1) at getCollisionBox and at getBoundingBox.

 

ss7

You sir are a god damn hero.

Link to comment
Share on other sites

Point.

However, that's how you make a bounding box.

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.