#Help with gradient

1 messages · Page 1 of 1 (latest)

tame sundial
#

Im trying to make a gradient on this half sphere, and im not sure how to apply the gradient to the whole structure.

twin dock
#

tool mask the block
block=deepslate or whatever and use the gradient painter

tame sundial
#

is there documentation somewhere on tool masking?

safe idolBOT
#

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:

  1. Ensure the Tool Masks menu is open. You can find it at:

    • Main Menu Bar -> Tool Masks
  2. 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.

Example Mask