Posted October 26, 20241 yr @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 ступенями, но не знаю, как добавить больше ступеней
October 26, 20241 yr Author sorry, on eng: I want to make a stairs with 5 steps but I don’t know how to add more steps Edited October 26, 20241 yr by ZaiDaliTeS
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.