Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public abstract void initColllisionBoxes();
- public abstract List<CollisionBox> getCollisionBoxes(IExtendedBlockState state);
- @Override
- public void addCollisionBoxesToList(World world, BlockPos pos, IBlockState rawState, AxisAlignedBB mask, List<AxisAlignedBB> list, Entity collidingEntity) {
- AxisAlignedBB originMask = mask.offset(-pos.getX(), -pos.getY(), -pos.getZ());
- boolean eNull = collidingEntity == null;
- IBlockState plainState = world.getBlockState(pos);
- IExtendedBlockState state = (IExtendedBlockState) getExtendedState(plainState, world, pos);
- if(CatwalksMod.developmentEnvironment) initColllisionBoxes();
- List<CollisionBox> boxes = getCollisionBoxes(state);
- if(boxes == null) {
- Logs.error("ERROR: Collision box list null!");
- }
- for (CollisionBox box : boxes) {
- if(!state.getValue(box.enableProperty))
- continue;
- Cuboid6 cuboid = (eNull || !collidingEntity.isSneaking()) ? box.normal : box.sneak;
- if(cuboid.aabb().intersectsWith(originMask)) {
- list.add(cuboid.aabb().offset(pos.getX(), pos.getY(), pos.getZ()));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement