Jump to content

/Fill3D: Difference between revisions

From fCraft Wiki
mNo edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 21: Line 21:


==Customizing <code>/Fill3D</code> behavior==
==Customizing <code>/Fill3D</code> behavior==
*{{cmd|Fill3D}} is not affected by normal draw limits setting (<code>drawLimit</code>) the same way as other commands. The volume that you are allowed to fill is determined by the cube root of the draw limit, rounded up to the nearest odd number. For example, a drawLimit of 50,000 means that the maximum fill dimensions are &#8731;50000 × &#8731;50000 × &#8731;50000 = 37×37×37 area. That includes the center point, plus up to 18 blocks on each side.
*The volume of blocks that can be drawn at once can be limited per-rank. If a limit is set, the maximum volume that player is allowed to fill is determined by the cube root of the draw limit. For example, a drawLimit of 50,000 means that the maximum fill dimensions are 37×37×37 (&#8731;50000 ≈ 37) That includes the center point, plus up to 18 blocks on each side.
*Being able to undo a command requires storing a backup of an area of the map. This may take up significant amounts of memory. By default, fCraft limits {{cmd|Undo}} to the first 2,000,000 blocks that are drawn. You can change this (or remove the limit entirely) via [[List_of_config_keys#Advanced|MaxUndo]] config key.
*Being able to undo a command requires storing a backup of an area of the map. This may take up significant amounts of memory. By default, fCraft limits {{cmd|Undo}} to the first 2,000,000 blocks that are drawn. You can change this (or remove the limit entirely) via [[List_of_config_keys#Advanced|MaxUndo]] config key.
==Related Commands==
:*{{cmd|Fill2D}}


{{LastUpdated|2150}}
{{LastUpdated|2150}}

Latest revision as of 10:58, 25 August 2013

Command
Fill3D

Fills a shape with blocks.

AliasesF3D
Usage

/Fill3D

/Fill3D ReplacementBlock

CategoryBuilding
Required permissionsDraw, DrawAdvanced
Usable from console?No
Introduced infCraft 0.642

Fills a continuous shape/volume with blocks, in 3D. Takes just 1 mark, and replaces blocks of the same type as the block you clicked. Works similar to "Paint Bucket" tool in Photoshop, but in 3D. Unlike /Fill2D, it does not matter which direction you are facing when clicking. /Fill3D will ask for a confirmation if you click an air block.

/Fill3D

Fills the area with the block that you are currently holding.

/Fill3D ReplacementBlock

This information only applies when command is used with the Normal brush.
Fills the area with a given block type.

Customizing /Fill3D behavior

  • The volume of blocks that can be drawn at once can be limited per-rank. If a limit is set, the maximum volume that player is allowed to fill is determined by the cube root of the draw limit. For example, a drawLimit of 50,000 means that the maximum fill dimensions are 37×37×37 (∛50000 ≈ 37) That includes the center point, plus up to 18 blocks on each side.
  • Being able to undo a command requires storing a backup of an area of the map. This may take up significant amounts of memory. By default, fCraft limits /Undo to the first 2,000,000 blocks that are drawn. You can change this (or remove the limit entirely) via MaxUndo config key.