Skip to main content
Version: Next

Fountain Bloom

A beautiful fountain in the shape of a bloom.

Parameters

ParametersDescriptionExample
LocationThe origin of the fountain in the format world, x, y, z.world, 196.3, 64, -381.8
SequencerEdit the velocity of the fountain over time. Format: ticks: width, height. Multiple values separated by semicolons: ticks1: width1, height1; ticks2: width2, height2; .... See additional info below for advanced usage with automatic values and changing materials.0: 0.1, 0.8; 50: 0.6, 0.8; 100: 0.1, 0.8
BlockThe block to use as falling block (items won't work).BLUE_STAINED_GLASS
BlockDataThe block data of the block (if applicable), e.g. an open gate or rotated stair. Use [] to set none.[open=true]
DurationThe duration of the effect in ticks.20
AmountNumber of falling blocks to spawn each tick.15
RandomizerRandomizes velocity values a bit. Higher values create more variation. Recommended range: 0 to 1.0.5
DelayNumber of ticks the effect waits after the show starts before activation.40
YML Preset
'1':
Type: FOUNTAIN_BLOOM
Location: 'world, 0, 0, 0'
Sequencer: '0: 0.1, 0.8; 50: 0.6, 0.8; 100: 0.1, 0.8'
Block: BLUE_STAINED_GLASS
BlockData: []
Duration: 20
Amount: 15
Randomizer: 0
Delay: 0

Preview

Fountain Bloom Preview


Sequencer Additional Information
info

Sequencer Additional Information

The sequencer format is:

tick: width, height; tick: width, height; ...

Advanced usage:

  • Automatic values: Use ~ to let the plugin calculate the value automatically.

    Example:

    0: 0.0, 0.0;
    50: ~, 0.75;
    100: 0.3, ~;
  • Changing materials: Add a material name as a third value to change the block used at that tick.

    Example:

    0: 0.0, 0.0, RED_WOOL;
    50: ~, ~, YELLOW_WOOL;
    100: 0.3, 0.75, ORANGE_WOOL;