public class FastModeExtent extends AbstractDelegateExtent
Constructor and Description |
---|
FastModeExtent(World world)
Create a new instance with fast mode enabled.
|
FastModeExtent(World world,
boolean enabled)
Create a new instance.
|
Modifier and Type | Method and Description |
---|---|
protected Operation |
commitBefore() |
boolean |
isEnabled()
Return whether fast mode is enabled.
|
boolean |
setBlock(Vector location,
BlockStateHolder block)
Change the block at the given location to the given block.
|
void |
setEnabled(boolean enabled)
Set fast mode enable status.
|
commit, createEntity, getBiome, getBlock, getEntities, getEntities, getExtent, getFullBlock, getMaximumPoint, getMinimumPoint, setBiome
public FastModeExtent(World world)
world
- the worldpublic FastModeExtent(World world, boolean enabled)
world
- the worldenabled
- true to enable fast modepublic boolean isEnabled()
public void setEnabled(boolean enabled)
enabled
- true to enable fast modepublic boolean setBlock(Vector location, BlockStateHolder block) throws WorldEditException
OutputExtent
BlockStateHolder
to the world, so future changes to the
BlockStateHolder
do not affect the world until this method is called again.
The return value of this method indicates whether the change was probably successful. It may not be successful if, for example, the location is out of the bounds of the extent. It may be unsuccessful if the block passed is the same as the one in the world. However, the return value is only an estimation and it may be incorrect, but it could be used to count, for example, the approximate number of changes.
setBlock
in interface OutputExtent
setBlock
in class AbstractDelegateExtent
location
- position of the blockblock
- block to setWorldEditException
- thrown on an errorprotected Operation commitBefore()
commitBefore
in class AbstractDelegateExtent