Posted September 17, 201312 yr 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.
September 17, 201312 yr Author Hello, The problem is, that i don't KNOW how i can set a bounding box for a entity. I followed the entity tutorial by VSWE, but he also doesn't set a bounding box. ss7 You sir are a god damn hero.
September 17, 201312 yr 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.
September 17, 201312 yr Author 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.
September 17, 201312 yr 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.
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.