mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2025-02-14 03:21:23 +01:00
Updated Brushes (markdown)
parent
efac6c0571
commit
ffa37dfd62
136
Brushes.md
136
Brushes.md
@ -46,138 +46,6 @@ With FAWE you can visualize how the brush will change blocks:
|
||||
|
||||
Video: https://www.youtube.com/watch?v=xX-MTSLoNXw
|
||||
Pic: https://i.imgur.com/J2g6Qfn.jpg
|
||||
### Brushes
|
||||
#### `//brush blendball [radius=5]`
|
||||
Perm: `worldedit.brush.blendball`
|
||||
Desc: Blend terrain
|
||||
Pic: https://i.imgur.com/cNUQUkj.png -> https://i.imgur.com/hFOFsNf.png
|
||||
#### `//brush erode [radius=5]`
|
||||
Perm: `worldedit.brush.erode`
|
||||
Desc: Erode terrain
|
||||
#### `//brush pull [radius]`
|
||||
Perm: `worldedit.brush.pull`
|
||||
Desc: Pull terrain towards you
|
||||
#### `//brush circle <pattern> [radius=5]`
|
||||
Perm: `worldedit.brush.circle`
|
||||
Desc: Creates a circle which revolves around your facing direction
|
||||
Note: Decrease brush radius, and enabled visualization to assist with placement mid-air
|
||||
#### `//brush recursive <pattern> [radius=5]`
|
||||
Perm: `worldedit.brush.recursive`
|
||||
Desc: Set all connected blocks
|
||||
Flags: -d will apply in depth first order
|
||||
Note: Set a mask to change behavior
|
||||
#### `//brush line <pattern> [radius=0]`
|
||||
Perm: `worldedit.brush.line`
|
||||
Desc: Create lines
|
||||
Flags: -h: create shell -s: selects clicked point -f: flat line
|
||||
#### `//brush spline <pattern> [radius=25]`
|
||||
Perm `worldedit.brush.spline`
|
||||
Desc: Click to select some objects,click the same block twice to connect the objects.
|
||||
Note: Insufficient brush radius, or clicking the the wrong spot will result in undesired shapes. The shapes must be simple lines or loops.
|
||||
Pic1: http://i.imgur.com/CeRYAoV.jpg -> http://i.imgur.com/jtM0jA4.png
|
||||
Pic2: http://i.imgur.com/bUeyc72.png -> http://i.imgur.com/tg6MkcF.png
|
||||
#### `//brush surfacespline <pattern> [size=0] [tension=0] [bias=0] [continuity=0] [quality=10]`
|
||||
Perm `worldedit.brush.surfacespline`
|
||||
Desc: Creat a spline on the surface
|
||||
Video: https://www.youtube.com/watch?v=zSN-2jJxXlM
|
||||
#### `//brush sphere <pattern> [radius=5]`
|
||||
Perm: `worldedit.brush.sphere`
|
||||
Desc: Creates a sphere
|
||||
Flags: -h: creates a hollow sphere
|
||||
#### `//brush shatter <pattern> [radius=10] [count=10]`
|
||||
Perm: `worldedit.brush.shatter`
|
||||
Desc: Creates uneven lines separating terrain into multiple pieces
|
||||
Pic: https://i.imgur.com/rNQvqRL.jpg
|
||||
#### `//brush color <pattern> [radius=5] [file|#clipboard|imgur=null] [rotation=360] [yscale=1.0]`
|
||||
Perm: `worldedit.brush.stencil`
|
||||
Desc: Use a height map to paint any surface
|
||||
Flags: -w: Only applies at max saturation, -r: Applies random rotation
|
||||
#### `//brush height [radius=5] [file|#clipboard|imgur=null] [rotation=0] [yscale=1.00]`
|
||||
Perm: `worldedit.brush.height`
|
||||
Desc: Raise or lower terrain (ommitting an argument will use the default value)
|
||||
Note: Use a negative yscale to reduce height
|
||||
Flags: `-r`: Enables random rotation `-l`: Use block data as layers (e.g. snow)
|
||||
Snow Pic: https://i.imgur.com/Hrzn0I4.png
|
||||
#### `//brush flat [radius=5] [file|#clipboard|imgur=null] [rotation=0] [yscale=1.00]`
|
||||
Perm: `worldedit.brush.height`
|
||||
Desc: Flattens terrain according to a heightmap
|
||||
Flags: -r: Enables random rotation for the heightmap
|
||||
Note: Use `/br cliff` For sharper default heightmap
|
||||
#### `//brush layer <radius> <pattern1> <patern2> <pattern3>...`
|
||||
Perm: `worldedit.brush.layer`
|
||||
Desc: Replaces terrain with a layer.
|
||||
Example: `/br layer 5 95:1 95:2 35:15` - Places several layers on a surface
|
||||
Pic: https://i.imgur.com/XV0vYoX.png
|
||||
#### `//brush populateschematic <mask> <schematic file|folder|url> [radius=30] [density=50]`
|
||||
Perm: `worldedit.brush.populateschematic`
|
||||
Desc: Place a schematic randomly on a surface.
|
||||
Flags: -r To randomly rotate schematics
|
||||
Example: `/br pschem "grass \0:0" tree.schematic ` - Places a tree randomly on flat grass
|
||||
#### `//brush scatter <pattern> [radius=5] [points=5] [distance=1]`
|
||||
Perm: `worldedit.brush.scatter`
|
||||
Desc: Set a number of blocks randomly on a surface each a certain distance apart
|
||||
Flags: -o To overlay the pattern
|
||||
Example 1: `/br scatter #fullcopy 30 5 -o` - Places your clipboard (e.g. tree) randomly on the surface
|
||||
#### `//brush splatter <pattern> [radius=5] [seeds=1] [recursion=5] [solid=true]`
|
||||
Perm: `worldedit.brush.splatter`
|
||||
Desc: Sets a bunch of blocks randomly on a surface
|
||||
Example: `/br splatter stone,dirt 30 15`
|
||||
Pic: https://i.imgur.com/hMD29oO.png
|
||||
Note: The seeds define how many splotches there are, recursion defines how large, solid defines whether the pattern is applied per seed, else per block.
|
||||
#### `//brush scmd <scatter-radius> <points> <cmd-radius> <cmd1;cmd2...>`
|
||||
Perm: `worldedit.brush.scattercommand`
|
||||
Desc: Scatters commands on a surface
|
||||
Example: `/br scmd 30 5 1 /sphere stone 5+randint(5)` - places random sized spheres on any surface
|
||||
#### `//brush cylinder <block> [radius=2] [height=1]`
|
||||
Perm: `worldedit.brush.cylinder`
|
||||
Desc: Creates a cylinder
|
||||
Flags: -h: Creates a hollow cylinder
|
||||
#### `//brush copypaste [depth=5]`
|
||||
Perm: `worldedit.brush.copy`
|
||||
Desc: Recursively copies blocks to your clipboard on first click, then pastes
|
||||
Flags: -r: Applies random rotation
|
||||
Note: Works well with the clipboard scroll action
|
||||
Video: https://www.youtube.com/watch?v=RPZIaTbqoZw
|
||||
#### `//brush gravity [radius=5]`
|
||||
Perm: `worldedit.brush.gravity`
|
||||
Desc: Makes blocks fall
|
||||
Flags: -h Affects all blocks vertically
|
||||
Note: See also `//fall`
|
||||
#### `//brush command <radius> [cmd1;cmd2...]`
|
||||
Perm: `worldedit.brush.command`
|
||||
Desc: Performs multiple WorldEdit commands at the clicked location with a provided selection radius
|
||||
#### `//inspect`
|
||||
Perm: `worldedit.tool.inspect`
|
||||
Desc: View past edits at a location
|
||||
#### `//brush butcher [radius=5]`
|
||||
Perm: `worldedit.brush.butcher`
|
||||
Desc: Butchers entities
|
||||
Flags:
|
||||
- -p also kills pets.
|
||||
- -n also kills NPCs.
|
||||
- -g also kills Golems.
|
||||
- -a also kills animals.
|
||||
- -b also kills ambient mobs.
|
||||
- -t also kills mobs with name tags.
|
||||
- -f compounds all previous flags.
|
||||
- -r also destroys armor stands.
|
||||
- -l currently does nothing.
|
||||
|
||||
#### `//brush extinguish [radius=5]`
|
||||
Perm: `worldedit.brush.ex`
|
||||
Desc: Extinguish fires
|
||||
#### `//br apply <cuboid|sphere|cyl> <size> <forest|item|set> <value>`
|
||||
Desc: Apply a function on click
|
||||
Perm: `worldedit.brush.apply`
|
||||
#### `//br paint<cuboid|sphere|cyl> <size> <density> <forest|item|set> <value>`
|
||||
Desc: Apply a function with a given density on click
|
||||
Perm: `worldedit.brush.paint`
|
||||
#### `//brush clipboard`
|
||||
Perm: `worldedit.brushclipboard.`
|
||||
Desc: Deprecated
|
||||
Flags: -a: skip air, -p: center clipboard
|
||||
#### `//brush smooth`
|
||||
Perm: `worldedit.brush.smooth`
|
||||
Desc: Deprecated
|
||||
Flags: -n: Considers only natural blocks
|
||||
|
||||
### Brushes:
|
||||
[For a list of brushes, visit the command page.](https://github.com/boy0001/FastAsyncWorldedit/wiki/Commands#brush-commands-)
|
Loading…
Reference in New Issue
Block a user