Ready to use. Cannot be combined with other modes.
Random
;Outline
- draws voxels near to air and color borders first, then inner ones.
Kinds of sort by some criteria, can be combined with second criteria. If no second criteria is used, then it is being considered random.
- By direction:
AscX
- ascending by X (and so on);DescX
- descending by X (and so on);AscY
;DescY
;AscZ
orBottom
;DescZ
orTop
;
- By color:
Color
- ordered by color, same way as palette at site;ColorDesc
- opposite order;ColorRnd
- palette are mixed randomly before sort.
Defines order of voxels that have same value by first criteria; do not use these alone - bot will refuse to launch.
- By direction:
ThenAscX
;ThenDescX
;ThenAscY
;ThenDescY
;ThenAscZ
orThenBottom
;ThenDescZ
orThenTop
;
- By color:
ThenColor
;ThenColorDesc
;ThenColorRnd
.
Use these if you want two criteria sort.
- By direction:
AscXTop
;AscXBottom
;DescXTop
;DescXBottom
;AscYTop
;AscYBottom
;DescYTop
;DescYBottom
;TopAscX
;TopDescX
;TopAscY
;TopDescY
;BottomAscX
;BottomDescX
;BottomAscY
;BottomDescY
;
- By color and direction:
ColorAscX
;ColorDescX
;ColorAscY
;ColorDescY
;ColorTop
;ColorBottom
;ColorDescAscX
;ColorDescDescX
;ColorDescAscY
;ColorDescDescY
;ColorDescTop
;ColorDescBottom
;ColorRndAscX
;ColorRndDescX
;ColorRndAscY
;ColorRndDescY
;ColorRndTop
;ColorRndBottom
;
- Mode names are case insensitive;
- If you lack some weird modes (for example, "top to bottom then ordered by color"), you can pass it like this:
Top,ThenColor
.
If you use spaces after commas, parenthesis are required:"Top, ThenColor"
.