| Modifier and Type | Method and Description |
|---|---|
int |
EditSession.center(Region region,
Pattern pattern)
Sets the blocks at the center of the given region to the given pattern.
|
int |
EditSession.deformRegion(Region region,
Vector zero,
Vector unit,
String expressionString) |
int |
EditSession.drainArea(Vector origin,
double radius)
Drain nearby pools of water or lava.
|
int |
EditSession.drawLine(Pattern pattern,
Vector pos1,
Vector pos2,
double radius,
boolean filled)
Draws a line (out of blocks) between two vectors.
|
int |
EditSession.drawSpline(Pattern pattern,
List<Vector> nodevectors,
double tension,
double bias,
double continuity,
double quality,
double radius,
boolean filled)
Draws a spline (out of blocks) between specified vectors.
|
int |
EditSession.fillXZ(Vector origin,
BaseBlock block,
double radius,
int depth,
boolean recursive)
Fills an area recursively in the X/Z directions.
|
int |
EditSession.fillXZ(Vector origin,
Pattern pattern,
double radius,
int depth,
boolean recursive)
Fills an area recursively in the X/Z directions.
|
int |
EditSession.fixLiquid(Vector origin,
double radius,
int moving,
int stationary)
Fix liquids so that they turn into stationary blocks and extend outward.
|
boolean |
LocalWorld.generateBigTree(EditSession editSession,
Vector pt)
Deprecated.
|
boolean |
LocalWorld.generateBirchTree(EditSession editSession,
Vector pt)
Deprecated.
|
boolean |
LocalWorld.generateRedwoodTree(EditSession editSession,
Vector pt)
Deprecated.
|
boolean |
LocalWorld.generateTallRedwoodTree(EditSession editSession,
Vector pt)
Deprecated.
|
boolean |
LocalWorld.generateTree(EditSession editSession,
Vector pt)
Deprecated.
|
boolean |
LocalWorld.generateTree(TreeGenerator.TreeType type,
EditSession editSession,
Vector pt)
Deprecated.
|
int |
EditSession.green(Vector position,
double radius)
Deprecated.
|
int |
EditSession.green(Vector position,
double radius,
boolean onlyNormalDirt)
Make dirt green.
|
int |
EditSession.hollowOutRegion(Region region,
int thickness,
Pattern pattern)
Hollows out the region (Semi-well-defined for non-cuboid selections).
|
int |
EditSession.makeBiomeShape(Region region,
Vector zero,
Vector unit,
BaseBiome biomeType,
String expressionString,
boolean hollow) |
int |
EditSession.makeCuboidFaces(Region region,
BaseBlock block)
Make the faces of the given region as if it was a
CuboidRegion. |
int |
EditSession.makeCuboidFaces(Region region,
Pattern pattern)
Make the faces of the given region as if it was a
CuboidRegion. |
int |
EditSession.makeCuboidWalls(Region region,
BaseBlock block)
Make the walls (all faces but those parallel to the X-Z plane) of the given region
as if it was a
CuboidRegion. |
int |
EditSession.makeCuboidWalls(Region region,
Pattern pattern)
Make the walls (all faces but those parallel to the X-Z plane) of the given region
as if it was a
CuboidRegion. |
int |
EditSession.makeCylinder(Vector pos,
Pattern block,
double radiusX,
double radiusZ,
int height,
boolean filled)
Makes a cylinder.
|
int |
EditSession.makeCylinder(Vector pos,
Pattern block,
double radius,
int height,
boolean filled)
Makes a cylinder.
|
int |
EditSession.makeFaces(Region region,
Pattern pattern)
Make the faces of the given region.
|
int |
EditSession.makeForest(Vector basePosition,
int size,
double density,
TreeGenerator treeGenerator)
Makes a forest.
|
int |
EditSession.makePumpkinPatches(Vector position,
int apothem)
Makes pumpkin patches randomly in an area around the given position.
|
int |
EditSession.makePyramid(Vector position,
Pattern block,
int size,
boolean filled)
Makes a pyramid.
|
int |
EditSession.makeShape(Region region,
Vector zero,
Vector unit,
Pattern pattern,
String expressionString,
boolean hollow) |
int |
EditSession.makeSphere(Vector pos,
Pattern block,
double radius,
boolean filled)
Makes a sphere.
|
int |
EditSession.makeSphere(Vector pos,
Pattern block,
double radiusX,
double radiusY,
double radiusZ,
boolean filled)
Makes a sphere or ellipsoid.
|
int |
EditSession.makeWalls(Region region,
Pattern pattern)
Make the walls of the given region.
|
int |
EditSession.moveCuboidRegion(Region region,
Vector dir,
int distance,
boolean copyAir,
BaseBlock replacement)
Move the blocks in a region a certain direction.
|
int |
EditSession.moveRegion(Region region,
Vector dir,
int distance,
boolean copyAir,
BaseBlock replacement)
Move the blocks in a region a certain direction.
|
int |
EditSession.naturalizeCuboidBlocks(Region region)
Turns the first 3 layers into dirt/grass and the bottom layers
into rock, like a natural Minecraft mountain.
|
int |
EditSession.overlayCuboidBlocks(Region region,
BaseBlock block)
Places a layer of blocks on top of ground blocks in the given region
(as if it were a cuboid).
|
int |
EditSession.overlayCuboidBlocks(Region region,
Pattern pattern)
Places a layer of blocks on top of ground blocks in the given region
(as if it were a cuboid).
|
void |
CuboidClipboard.paste(EditSession editSession,
Vector newOrigin,
boolean noAir)
Deprecated.
Paste the clipboard at the given location using the given
EditSession. |
void |
CuboidClipboard.paste(EditSession editSession,
Vector newOrigin,
boolean noAir,
boolean entities)
Deprecated.
Paste the clipboard at the given location using the given
EditSession. |
void |
CuboidClipboard.place(EditSession editSession,
Vector newOrigin,
boolean noAir)
Deprecated.
Paste the clipboard at the given location using the given
EditSession. |
int |
EditSession.removeAbove(Vector position,
int apothem,
int height)
Remove a cuboid above the given position with a given apothem and a given height.
|
int |
EditSession.removeBelow(Vector position,
int apothem,
int height)
Remove a cuboid below the given position with a given apothem and a given height.
|
int |
EditSession.removeNear(Vector position,
int blockType,
int apothem)
Remove blocks of a certain type nearby a given position.
|
int |
EditSession.replaceBlocks(Region region,
Mask mask,
Pattern pattern)
Replaces all the blocks matching a given mask, within a given region, to a block
returned by a given pattern.
|
int |
EditSession.replaceBlocks(Region region,
Set<BaseBlock> filter,
BaseBlock replacement)
Replaces all the blocks matching a given filter, within a given region, to a block
returned by a given pattern.
|
int |
EditSession.replaceBlocks(Region region,
Set<BaseBlock> filter,
Pattern pattern)
Replaces all the blocks matching a given filter, within a given region, to a block
returned by a given pattern.
|
boolean |
EditSession.setBlock(Vector position,
BaseBlock block) |
boolean |
EditSession.setBlock(Vector position,
Pattern pattern)
Sets the block at a position, subject to both history and block re-ordering.
|
boolean |
EditSession.setBlockIfAir(Vector position,
BaseBlock block)
Deprecated.
Use your own method
|
int |
EditSession.setBlocks(Region region,
BaseBlock block)
Sets all the blocks inside a region to a given block type.
|
int |
EditSession.setBlocks(Region region,
Pattern pattern)
Sets all the blocks inside a region to a given pattern.
|
boolean |
EditSession.setChanceBlockIfAir(Vector position,
BaseBlock block,
double probability)
Set a block (only if a previous block was not there) if
Math.random()
returns a number less than the given probability. |
int |
EditSession.simulateSnow(Vector position,
double radius)
Make snow in a radius.
|
int |
EditSession.stackCuboidRegion(Region region,
Vector dir,
int count,
boolean copyAir)
Stack a cuboid region.
|
int |
EditSession.thaw(Vector position,
double radius)
Thaw blocks in a radius.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ClipboardBrush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size) |
void |
CylinderBrush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size) |
void |
SphereBrush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size) |
void |
Brush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size)
Build the object.
|
void |
HollowCylinderBrush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size) |
void |
SmoothBrush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size) |
void |
ButcherBrush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size) |
void |
HollowSphereBrush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size) |
void |
GravityBrush.build(EditSession editSession,
Vector position,
Pattern pattern,
double size) |
| Modifier and Type | Method and Description |
|---|---|
static void |
Operations.completeLegacy(Operation op)
Complete a given operation synchronously until it completes.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
LocalWorldAdapter.generateBigTree(EditSession editSession,
Vector position)
Deprecated.
|
boolean |
LocalWorldAdapter.generateBirchTree(EditSession editSession,
Vector position)
Deprecated.
|
boolean |
LocalWorldAdapter.generateRedwoodTree(EditSession editSession,
Vector position)
Deprecated.
|
boolean |
LocalWorldAdapter.generateTallRedwoodTree(EditSession editSession,
Vector position)
Deprecated.
|
boolean |
LocalWorldAdapter.generateTree(EditSession editSession,
Vector position)
Deprecated.
|
boolean |
LocalWorldAdapter.generateTree(TreeGenerator.TreeType type,
EditSession editSession,
Vector position) |
| Modifier and Type | Method and Description |
|---|---|
void |
WorldEditExceptionConverter.convert(MaxChangedBlocksException e) |
| Modifier and Type | Method and Description |
|---|---|
int |
HeightMap.apply(int[] data)
Apply a raw heightmap to the region
|
int |
HeightMap.applyFilter(HeightMapFilter filter,
int iterations)
Apply the filter 'iterations' amount times.
|
| Modifier and Type | Method and Description |
|---|---|
int |
ArbitraryShape.generate(EditSession editSession,
Pattern pattern,
boolean hollow)
Generates the shape.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
TreeGenerator.generate(EditSession editSession,
Vector position)
Generate a tree.
|
boolean |
TreeGenerator.TreeType.generate(EditSession editSession,
Vector pos) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
AbstractWorld.generateBigTree(EditSession editSession,
Vector pt) |
boolean |
World.generateBigTree(EditSession editSession,
Vector position)
Deprecated.
Use
#generateTree(TreeType, EditSession, Vector) |
boolean |
AbstractWorld.generateBirchTree(EditSession editSession,
Vector pt) |
boolean |
World.generateBirchTree(EditSession editSession,
Vector position)
Deprecated.
Use
#generateTree(TreeType, EditSession, Vector) |
boolean |
AbstractWorld.generateRedwoodTree(EditSession editSession,
Vector pt) |
boolean |
World.generateRedwoodTree(EditSession editSession,
Vector position)
Deprecated.
Use
#generateTree(TreeType, EditSession, Vector) |
boolean |
AbstractWorld.generateTallRedwoodTree(EditSession editSession,
Vector pt) |
boolean |
World.generateTallRedwoodTree(EditSession editSession,
Vector position)
Deprecated.
Use
#generateTree(TreeType, EditSession, Vector) |
boolean |
AbstractWorld.generateTree(EditSession editSession,
Vector pt) |
boolean |
World.generateTree(EditSession editSession,
Vector position)
Deprecated.
Use
#generateTree(TreeType, EditSession, Vector) |
boolean |
NullWorld.generateTree(TreeGenerator.TreeType type,
EditSession editSession,
Vector position) |
boolean |
World.generateTree(TreeGenerator.TreeType type,
EditSession editSession,
Vector position)
Generate a tree at the given position.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SnapshotRestore.restore()
Restores to world.
|
Copyright © 2010-2014. All Rights Reserved.