Package net.fabricmc.fabric.api.registry
Class OxidizableBlocksRegistry
java.lang.Object
net.fabricmc.fabric.api.registry.OxidizableBlocksRegistry
Provides methods for registering oxidizable and waxable blocks.
-
Method Summary
Modifier and TypeMethodDescriptionstatic voidregisterCopperBlockSet(net.minecraft.world.level.block.WeatheringCopperBlocks blockSet) Registers aWeatheringCopperBlocksand its oxidizing and waxing variants.static voidregisterOxidizableBlockPair(net.minecraft.world.level.block.Block less, net.minecraft.world.level.block.Block more) Registers a block pair as being able to increase and decrease oxidation.static voidregisterWaxableBlockPair(net.minecraft.world.level.block.Block unwaxed, net.minecraft.world.level.block.Block waxed) Registers a block pair as being able to add and remove wax.
-
Method Details
-
registerOxidizableBlockPair
public static void registerOxidizableBlockPair(net.minecraft.world.level.block.Block less, net.minecraft.world.level.block.Block more) Registers a block pair as being able to increase and decrease oxidation.- Parameters:
less- the variant with less oxidationmore- the variant with more oxidation
-
registerWaxableBlockPair
public static void registerWaxableBlockPair(net.minecraft.world.level.block.Block unwaxed, net.minecraft.world.level.block.Block waxed) Registers a block pair as being able to add and remove wax.- Parameters:
unwaxed- the unwaxed variantwaxed- the waxed variant
-
registerCopperBlockSet
public static void registerCopperBlockSet(net.minecraft.world.level.block.WeatheringCopperBlocks blockSet) Registers aWeatheringCopperBlocksand its oxidizing and waxing variants.- Parameters:
blockSet- the copper block set to register
-