Views
Actions
Difference between revisions of "Making Blocks"
(Inital Import dokuwiki) |
m (update blockstate link) |
||
Line 35: | Line 35: | ||
== Further Reading == | == Further Reading == | ||
− | For information about block properties, such as those used for vanilla blocks like fences, walls, and many more, see the section on [[ | + | For information about block properties, such as those used for vanilla blocks like fences, walls, and many more, see the section on [[Understanding Blockstates|blockstates]]. |
Revision as of 18:16, 24 October 2020
Blocks are, obviously, essential to the Minecraft world. They make up all of the terrain, structures, and machines. Chances are if you are interested in making a mod, then you will want to add some blocks. This page will guide you through the creation of blocks, and some of the things you can do with them.
Creating a Block
Basic Blocks
For simple blocks, which need no special functionality (think cobblestone, wooden planks, etc.), a custom class is not necessary. You can create a block by instantiating the Block
class with a AbstractBlock$Properties
object. This AbstractBlock$Properties
object can be made using AbstractBlock$Properties::create
and it can be customised by calling its methods. For instance:
hardnessAndResistance
- The hardness controls the time it takes to break the block. It is an arbitrary value. For reference, stone has a hardness of 1.5, and dirt 0.5. If the block should be unbreakable a hardness of -1.0 should be used, see the definition ofBlocks#BEDROCK
as an example. The resistance controls the explosion resistance of the block. For reference, stone has a resistance of 6.0, and dirt 0.5.sound
- Controls the sound the block makes when it is punched, broken, or placed. Requires aSoundType
argument, see the sounds page for more details.setLightLevel
- Controls the light emission of the block. Takes a function with a BlockState parameter that returns an integer value from zero to fifteen.slipperiness
- Controls how slippery the block is. For reference, ice has a slipperiness of 0.98.
All these methods are chainable which means you can call them in series. See the Blocks
class for examples of this.
Tip
ItemGroup
. This has been moved to the BlockItem
and is now its responsibility.Advanced Blocks
Of course, the above only allows for extremely basic blocks. If you want to add functionality, like player interaction, a custom class is required. However, the Block
class has many methods and unfortunately not every single one can be documented here. See the rest of the pages in this section for things you can do with blocks.
Registering a Block
Blocks must be registered to function.
Important
A block in the world and a "block" in an inventory are very different things. A block in the world is represented by an BlockState
, and its behavior defined by an instance of Block
. Meanwhile, an item in an inventory is an ItemStack
, controlled by an Item
. As a bridge between the different worlds of Block
and Item
, there exists the class BlockItem
. BlockItem
is a subclass of Item
that has a field block
that holds a reference to the Block
it represents. BlockItem
defines some of the behavior of a "block" as an item, like how a right click places the block. It's possible to have a Block
without an BlockItem
. (E.g. minecraft:water
exists as a block, but not an item. It is therefore impossible to hold it in an inventory as one.)
BlockItem
. To create a basic BlockItem
for a block, one should use new BlockItem(block)
and match the registry name between the two objects. Custom subclasses of BlockItem
may be used as well. Once a BlockItem
has been registered for a block, Block#asItem
can be used to retrieve it. Block#asItem
will deafult to Items#AIR
if there is no BlockItem
for the Block
, so if you are not certain that there is an BlockItem
for the Block
you are using, check for Items#AIR
.
Optionally Registering Blocks
Since there is no limit on the amount of blocks that can be register, register all blocks in your mod! If you want a block to be disabled through a configuration file, you should disable the crafting recipe and/or remove the block from the creative menu (ItemGroup
).
Further Reading
For information about block properties, such as those used for vanilla blocks like fences, walls, and many more, see the section on blockstates.