Remove unused method

This commit is contained in:
Shadowfacts 2018-12-28 13:14:50 -05:00
parent 3fa9b5c1ee
commit d0d4d8f257
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
3 changed files with 1 additions and 39 deletions

View File

@ -81,21 +81,6 @@ public abstract class Multipart {
return getDefaultState();
}
/**
* Can be used to provide additional information to custom {@link net.shadowfacts.simplemultipart.client.MultipartBakedModel}.
* The returned state will be passed to {@link net.shadowfacts.simplemultipart.client.MultipartBakedModel#getMultipartQuads(MultipartView, Direction, Random)}.
*
* Can be overridden, should only be called via {@link MultipartState#getStateForRendering}
*
* @param state The normal state of this multipart.
* @param view The view of this multipart.
* @return The state that will be used for rendering.
*/
@Deprecated
public MultipartState getStateForRendering(MultipartState state, MultipartView view) {
return state;
}
/**
* Retrieves the bounding shape this multipart should have.
*

View File

@ -32,14 +32,6 @@ public class MultipartState extends AbstractPropertyContainer<Multipart, Multipa
return owner;
}
/**
* @see Multipart#getStateForRendering(MultipartState, MultipartView)
*/
public MultipartState getStateForRendering(MultipartView view) {
//noinspection deprecation
return owner.getStateForRendering(this, view);
}
/**
* @see Multipart#getBoundingShape(MultipartState, MultipartView)
*/

View File

@ -44,26 +44,11 @@ public class SlabMultipart extends Multipart {
half = context.getHitY() >= 0.5f ? BlockHalf.UPPER : BlockHalf.LOWER;
}
// if (hitSide == Direction.DOWN || (0.5f < context.getHitY() && context.getHitY() < 1)) {
// half = BlockHalf.UPPER;
// } else {
// half = BlockHalf.LOWER;
// }
// switch (hitSide) {
// case UP:
// half = BlockHalf.LOWER;
// break;
// case DOWN:
// half = BlockHalf.UPPER;
// break;
// default:
// half = context.getHitY() > 0.5f ? BlockHalf.UPPER : BlockHalf.LOWER;
// }
return getDefaultState().with(HALF, half);
}
@Override
@Deprecated
public VoxelShape getBoundingShape(MultipartState state, MultipartView view) {
return state.get(HALF) == BlockHalf.UPPER ? UPPER_BOX : LOWER_BOX;
}