Indicate if a material is a normal solid opaque cube
()
| 347 | * Indicate if a material is a normal solid opaque cube |
| 348 | */ |
| 349 | public boolean isBlockNormalCube() |
| 350 | { |
| 351 | return this.blockMaterial.blocksMovement() && this.isFullCube(); |
| 352 | } |
| 353 | |
| 354 | /** |
| 355 | * Used for nearly all game logic (non-rendering) purposes. Use Forge-provided isNormalCube(IBlockAccess, BlockPos) |
no test coverage detected