Interface BlockTransformer.TransformationState

Enclosing interface:
BlockTransformer

public static interface BlockTransformer.TransformationState
The TransformationState allows access to the original block state and the block state of the block that was at the location of the transformation in the world before the transformation started.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a clone of the original block state that a structure wanted to place and caches it for the current transformer.
    Creates a clone of the block state that was at the location of the currently modified block at the start of the transformation process and caches it for the current transformer.
  • Method Details

    • getOriginal

      @NotNull BlockState getOriginal()
      Creates a clone of the original block state that a structure wanted to place and caches it for the current transformer.
      Returns:
      a clone of the original block state.
    • getWorld

      @NotNull BlockState getWorld()
      Creates a clone of the block state that was at the location of the currently modified block at the start of the transformation process and caches it for the current transformer.
      Returns:
      a clone of the world block state.