Skip to content

Circle Effect

2D circular effect, starting at one position and progressing around the circle.

{
"type": "CIRCLE",
"particle": {
"type": "minecraft:happy_villager"
},
"speed": 1,
"start_delay": 0,
"end_delay": 0,
"offset": {
"x": 0.0,
"y": 1.0,
"z": 0.0
},
"radius": 1.0,
"points": 20,
"phase": 0.0,
"clockwise": true,
"strands": 1,
"rotation": {
"x": 0.0,
"y": 0.0,
"z": 0.0
}
}

All Particle Effect Types inherit a base set of options. See Particle Effect Options for more information.

The radius of the circle.

"radius": 1.0

The number of points to create around the circle.

"points": 20

The starting angle (in radians) around the circle.

"phase": 0.0

Whether the effect should progress clockwise (true) or counter-clockwise (false).

"clockwise": true

The number of strands to create around the circle. Each strand will be evenly spaced around the circle

"strands": 1

The rotation of the entire circle effect around each axis (in degrees).

"rotation": {
"x": 0.0,
"y": 0.0,
"z": 0.0
}