Class ExtentBlockCopy
java.lang.Object
com.sk89q.worldedit.function.block.ExtentBlockCopy
- All Implemented Interfaces:
Filter,RegionFunction
Copies blocks from one extent to another.
-
Constructor Summary
ConstructorsConstructorDescriptionExtentBlockCopy(Extent source, BlockVector3 from, Extent destination, BlockVector3 to, Transform transform) Make a new copy. -
Method Summary
Modifier and TypeMethodDescriptionbooleanapply(BlockVector3 position) Apply the function to the given position.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.fastasyncworldedit.core.queue.Filter
applyChunk, finish, finishChunk, fork, joinMethods inherited from interface com.sk89q.worldedit.function.RegionFunction
applyBlock
-
Constructor Details
-
ExtentBlockCopy
public ExtentBlockCopy(Extent source, BlockVector3 from, Extent destination, BlockVector3 to, Transform transform) Make a new copy.- Parameters:
source- the source extentfrom- the source offsetdestination- the destination extentto- the destination offsettransform- a transform to apply to positions (after source offset, before destination offset)
-
-
Method Details
-
apply
Description copied from interface:RegionFunctionApply the function to the given position.- Specified by:
applyin interfaceRegionFunction- Parameters:
position- the position- Returns:
- true if something was changed
- Throws:
WorldEditException- thrown on an error
-