Jump to content

how to add morebounding boxes on block in 1.12.2


ZaiDaliTeS

Recommended Posts

        @Override
        public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
            switch ((EnumFacing) state.getValue(BlockDirectional.FACING)) {
                case SOUTH :
                default :
                    return new AxisAlignedBB(1D, 0D, 0.5D, 0D, 0.5D, 0D);
                case NORTH :
                    return new AxisAlignedBB(0D, 0D, 0.5D, 1D, 0.5D, 1D);
                case WEST :
                    return new AxisAlignedBB(0.5D, 0D, 1D, 1D, 0.5D, 0D);
                case EAST :
                    return new AxisAlignedBB(0.5D, 0D, 0D, 0D, 0.5D, 1D);
                case UP :
                    return new AxisAlignedBB(0D, 0.5D, 0D, 1D, 0D, 0.5D);
                case DOWN :
                    return new AxisAlignedBB(0D, 0.5D, 1D, 1D, 1D, 0.5D);
            }
        }
Я хочу сделать лестницу с 5 ступенями, но не знаю, как добавить больше ступеней

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.