Particle Line

Moves particles from one location straight to another one.

Parameters

ParameterInformationExample

FromLocation

The start location of the particles in the format of world, x, y, z.

world, 196.3, 64, -381.8

ToLocation

The end location of the particles in the format of world, x, y, z.

world, 199.3, 62, -388.8

Particle

The particle to spawn, here is a list of all the particles in the latest version.

FLAME

Amount

The amount of particles that need to be spawned.

200

Speed

The speed the origin moves from the first location to the second one. Measured in blocks/s.

3

Frequency

In Minecraft a new entity or particle spawns every tick, but when the speed is very high an empty space comes between two entities or particles. To fix that you can use the frequency parameter. The frequency is how many entities/particles there should be every block. This effect only activates when the speed is too big that the amount of entities or particles per block is lower than the frequency.

5

dX

The delta X, the value of this descides how much the area where the particle spawns will extend over the x-axis.

1

dY

The same as dX but with the y-axis

1

dZ

The same as dX but with the z-axis

1

Force

When enabled, the player will see the particle, no matter the distance (if it is in view of course).

false

Delay

The amount of ticks this effect waits after the show starts before it's activation.

40

Frequency Extra Info

In Minecraft a new entity or particle spawns every tick, but when the speed is very high an empty space comes between two entities or particles. To fix that you can use the frequency parameter. The frequency is how many entities/particles there should be every block.

This effect only activates when the speed is too big that the amount of entities or particles per block is lower than the frequency.

An example is when a particle line travels 10 blocks forward with a speed of 1 and a frequency of 5. The frequency will not be activated because the speed is 1 block per second which means that there will be 20 particles on one block and 20 is bigger than 5. If we change the speed to 10 then it'll travel with 10 blocks per second. Meaning that there should normally only spawn 2 particles on every block! This is where the frequency kicks in to spawn extra particles to fill in the gap.

YML Preset
'1':
  Type: PARTICLE_LINE
  FromLocation: world, 0, 0, 0
  ToLocation: world, 0, 3, 0
  Particle: SMOKE_NORMAL
  Amount: 1
  Speed: 1
  Frequency: 5
  dX: 0
  dY: 0
  dZ: 0
  Force: false
  Delay: 0

Youtube Tutorial

On my to do list...

Last updated