Uses of Class
net.minecraftforge.common.util.BlockSnapshot
-
Packages that use BlockSnapshot Package Description net.minecraft.world net.minecraftforge.common.util net.minecraftforge.event net.minecraftforge.event.world -
-
Uses of BlockSnapshot in net.minecraft.world
Fields in net.minecraft.world with type parameters of type BlockSnapshot Modifier and Type Field Description java.util.ArrayList<BlockSnapshot>
World. capturedBlockSnapshots
-
Uses of BlockSnapshot in net.minecraftforge.common.util
Methods in net.minecraftforge.common.util that return BlockSnapshot Modifier and Type Method Description static BlockSnapshot
BlockSnapshot. create(RegistryKey<World> dim, IWorld world, BlockPos pos)
static BlockSnapshot
BlockSnapshot. create(RegistryKey<World> dim, IWorld world, BlockPos pos, int flag)
-
Uses of BlockSnapshot in net.minecraftforge.event
Methods in net.minecraftforge.event with parameters of type BlockSnapshot Modifier and Type Method Description static boolean
ForgeEventFactory. onBlockPlace(Entity entity, BlockSnapshot blockSnapshot, Direction direction)
Method parameters in net.minecraftforge.event with type arguments of type BlockSnapshot Modifier and Type Method Description static boolean
ForgeEventFactory. onMultiBlockPlace(Entity entity, java.util.List<BlockSnapshot> blockSnapshots, Direction direction)
-
Uses of BlockSnapshot in net.minecraftforge.event.world
Fields in net.minecraftforge.event.world declared as BlockSnapshot Modifier and Type Field Description private BlockSnapshot
BlockEvent.EntityPlaceEvent. blockSnapshot
Fields in net.minecraftforge.event.world with type parameters of type BlockSnapshot Modifier and Type Field Description private java.util.List<BlockSnapshot>
BlockEvent.EntityMultiPlaceEvent. blockSnapshots
Methods in net.minecraftforge.event.world that return BlockSnapshot Modifier and Type Method Description BlockSnapshot
BlockEvent.EntityPlaceEvent. getBlockSnapshot()
Methods in net.minecraftforge.event.world that return types with arguments of type BlockSnapshot Modifier and Type Method Description java.util.List<BlockSnapshot>
BlockEvent.EntityMultiPlaceEvent. getReplacedBlockSnapshots()
Gets a list of BlockSnapshots for all blocks which were replaced by the placement of the new blocks.Constructors in net.minecraftforge.event.world with parameters of type BlockSnapshot Constructor Description EntityPlaceEvent(BlockSnapshot blockSnapshot, BlockState placedAgainst, Entity entity)
Constructor parameters in net.minecraftforge.event.world with type arguments of type BlockSnapshot Constructor Description EntityMultiPlaceEvent(java.util.List<BlockSnapshot> blockSnapshots, BlockState placedAgainst, Entity entity)
-