#Help with gradient
1 messages · Page 1 of 1 (latest)
tool mask the block
block=deepslate or whatever and use the gradient painter
is there documentation somewhere on tool masking?
Read the documentation to help you get started with Axiom here: https://axiomdocs.moulberry.com/intro.html
Masks
Masks allow you to limit which blocks a tool in the Editor UI can affect, functioning like 'rules' that apply the tool's effects only under specific conditions.
How to Use Masks:
-
Ensure the
Tool Masksmenu is open. You can find it at:Main Menu Bar -> Tool Masks
-
For detailed information, refer to the Tool Masks documentation.
Example:
Here’s an example of a mask that selects both Grass OR Stone blocks IF the block above them is Air:
- Mask:
block = [stone,grass_block] & above = air - Logic:
- OR (|) to select either Grass or Stone.
- AND (&) to apply the condition where the block above must be Air.