Easy Brushes
  • Easy Brushes
  • Overview
  • FAQ
  • Install Guide
  • Support
  • Changelog
  • Features
    • Mechanics
      • Action Types
    • Preview System
    • Commands
    • Undo
    • Config
    • Particles
    • Sounds
    • Placeholders
    • Palettes
    • Settings
    • Patterns
  • EXPERIMENTAL FEATURES
    • Performance (EXPERIMENTAL)
    • World Guard (EXPERIMENTAL)
    • Durability (OLD)
  • Examples
    • Brush Examples
    • Language Configuration Example
  • My Other Plugins
    • Easy Placeholders
Powered by GitBook
On this page
  1. Features

Patterns

Patterns are a new way to set a brush's material! You can start creating patterns using the new patterns.yml


Patterns can be 2 different types (as of right now)

  • Random

    • Can be used to scatter randomly (Density works as % of how much of that block would be in the area)

  • Checkered

    • Does a checkered pattern..

# Patterns Configuration
# Each pattern can be either random or ordered and contains multiple materials with their densities

pattern1:
  pattern: random
  color: "#FF00FF"
  permission: all
  materials:
    custom1:
      material: STONE
      density: 50
    custom2:
      material: OAK_PLANKS
      density: 50

pattern2:
  pattern: random
  permission: secret
  color: "#FF0000"
  materials:
    custom1:
      material: SMOOTH_STONE
      density: 2
    custom2:
      material: DARK_OAK_PLANKS
      density: 95
    custom3:
      material: DEEPSLATE
      density: 3

pattern3:
  pattern: ordered
  permission: all
  color: "#FFFFFF"
  materials:
    custom1:
      material: SMOOTH_STONE
      density: 1
    custom2:
      material: DARK_OAK_PLANKS
      density: 1
    custom3:
      material: STONE
      density: 1
    custom4:
      material: BIRCH_PLANKS
      density: 1
      
pattern4:
  pattern: random
  color: "#0000FF"
  permission: all
  materials:
    custom1:
      material: RED_CONCRETE
      density: 50
    custom2:
      material: BLUE_CONCRETE
      density: 50

pattern5:
  pattern: checkered
  permission: all
  color: "#FFFFFF"
  materials:
    custom1:
      material: RED_CONCRETE
      density: 3
    custom2:
      material: ORANGE_CONCRETE
      density: 1
    custom3:
      material: YELLOW_CONCRETE
      density: 1
    custom4:
      material: LIME_CONCRETE
      density: 1
    custom5:
      material: LIGHT_BLUE_CONCRETE
      density: 1
    custom6:
      material: PURPLE_CONCRETE
      density: 1
    custom7:
      material: PINK_CONCRETE
      density: 1
PreviousSettingsNextPerformance (EXPERIMENTAL)

Last updated 2 months ago